-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6841.py
More file actions
32 lines (29 loc) · 691 Bytes
/
6841.py
File metadata and controls
32 lines (29 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
while True:
s = input()
if s == 'TTYL':
print('talk to you later')
break
elif s == 'CU':
print('see you')
elif s == ':-)':
print("I’m happy")
elif s == ':-(':
print("I’m unhappy")
elif s == ';-)':
print("wink")
elif s == ':-P':
print("stick out my tongue")
elif s == '(~.~)':
print("sleepy")
elif s == 'TA':
print("totally awesome")
elif s == 'CCC':
print("Canadian Computing Competition")
elif s == 'CUZ':
print("because")
elif s == 'TY':
print("thank-you")
elif s == 'YW':
print("you’re welcome")
else:
print(s)