summaryrefslogtreecommitdiff
path: root/wk6/lect/calculator.py
blob: 3f39e136cb3955dd5bce1052013314f8731bb20b (plain)
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
# 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}")

def get_int(prompt):
    return int(input(prompt))


def main():
    x = get_int("x: ")
    y = get_int("y: ")

    print(x + y)


main()