How can I migrate (export and import) wordpress users without loosing their password?

You can’t. WordPress stores the passwords in the DB as hashes of the user password using a salt which is unique to the install. In an import situation (unlike full migration) you will probably not have the same salts in the new site and password validation will fail.

You should just notify the users that they should reset their password.