python-by-example-150-chall.../challenges1-11/challenage-004.py

4 lines
186 B
Python
Raw Normal View History

2019-07-17 14:56:46 +08:00
number_1 = int(input('Calculate two numbers \n please, enter 1st. number : '))
number_2 = int(input('please, enter 2st. number : '))
print('the result is {0}'.format(number_1+number_2))