RosettaCodeData/Task/A+B/Python/a+b-3.py

4 lines
89 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a = int(input("First number: "))
b = int(input("Second number: "))
print("Result:", a+b)