TanmayProgrammer-13 / Python-Simple-Calculator-Beginner-Guide-

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

x= input("Enter a Number:") x = int(x) y = input("Enter Another Number:") y= int(y) sum = (x+y) print(sum)

About