[REALLY, EZ] addition calculator
# #making calculator
#adding
number1 = int(input("Enter your first number: "))
number2 = int(input("Enter your second number: "))
print(number1 + number2)
#see on my replit
https://replit.com/@LukmanA47
# #making calculator
Comments
Post a Comment