#first let us create loop for requesting login and pass

login = ''
password = ''
while login != 'Andrew Maximenko' and password != 'qwerty':
	login = raw_input('Enter your login\n')
	password = raw_input('and password please\n')
	if login == 'Andrew Maximenko' and password == 'qwerty':
		print 'Access granted'
	#if login != 'Andrew Maximenko' and password != 'qwert':
	#	print 'Wrong login/password'
#Good. Done.
#Next we need to introduce other users to code
	elif login == 'Mary Maximenko' and password == 'qwerty':
		print 'Access granted. Hello, Mary'
	elif login == 'Joe Maximekno' and password == 'qwerty':
		print 'Access granted. Hello, Joe'
	else:
		print 'Wrong login/password'
raw_input('\n\nP')