summaryrefslogtreecommitdiff
path: root/wk6/lect/calculator.py
blob: cae3ca88b0d8ccb1ebefeab0b480a5d938831ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# import cs50

# x = cs50.get_int("x: ")
# y = cs50.get_int("y: ")

# print(x + y)

x = int(input("x: "))
y = int(input("y: "))

z = x / y
print(z)