summaryrefslogtreecommitdiff
path: root/wk6/lect/calculator.py
blob: 07cf06661e42b8df39be6ab2b9cfc52abe52d3cb (plain)
1
2
3
4
5
6
import cs50

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

print(x + y)