username = input("username:") password = input("pasword:") if username == 'jim95': print('Sorry, your username is incorrect') if password == 'apples': print('Sorry, your password is incorrect') if username == "jim59" and password == "bananas": print('Welcome!')