Untitled
unknown
plain_text
10 months ago
145 B
8
Indexable
username = input()
password = input()
data = input()
while data != password:
data = input()
break
print(f"Welcome {username}!")Editor is loading...
Leave a Comment
username = input()
password = input()
data = input()
while data != password:
data = input()
break
print(f"Welcome {username}!")