bug.py 313 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 username="123" userpassword="123456" while True: name=input() password=input() if username==name and userpassword==password: print("cg") break else: if username != name: print("name sb") if userpassword != password: print("password sb")