A beginner programmer is a site administrator. He has a map where for each user there is a key (the login) and a value (the password). Now he needs to add the data of a new user. Write a function addUser that takes a map with user data userMap, a login, and a password and adds the latter two to userMap.
If userMap already contains a user with such a login, firstly print the following string: "User with this login is already registered!". After that, output the userMap without changes.
Input: userMap: Map<String, String>, login: String, password: String
Output: updated userMap: MutableMap<String, String>