PY
py
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
while True:
print("\n\n\n\nHello, and welcome to my calculator!")
print("What I can:\n")
print("+\n")
print("-\n")
print("*\n")
print("/\n")
ussr = input("ama waiting:\n")
if ussr == "+":
x = float(input("Type:\n"))
y = float(input("Type!:\n"))
shid = (x + y)
print (shid)
elif(ussr == "-"):
x = float(input("Type:\n"))
y = float(input("Type!:\n"))
shit = (x - y)
print (shit)
elif(ussr == "fuck you"):
print("fuck YOU")
break
elif(ussr == "*"):
x = float(input("Type:\n"))
y = float(input("Type!:\n"))
shit = (x * y)
print (shit)
elif(ussr == "/"):
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run