3 lines
89 B
Python
3 lines
89 B
Python
a = int(input("First number: "))
|
|
b = int(input("Second number: "))
|
|
print("Result:", a+b)
|