5 lines
73 B
Python
5 lines
73 B
Python
a = int(input())
|
|
b = int(input())
|
|
|
|
print(f"Hello World! a + b is:{a+b}")
|