summaryrefslogtreecommitdiff
path: root/wk6/lect/calculator.py
blob: 26be429d6266dc64ddf29f936f2d7edf4f4c655f (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(f"{z:.50f}")