Untitled

Anonymous
plain_text
03/01/2025 9:04 AM
196 B
13
Indexable
username = input()
password = input()

data = input()
while data != password:
    data = input()
    break

print(f"Welcome {username}!")
Editor is loading...
Leave a Comment