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