first group of challenges

This commit is contained in:
abd.shallal
2019-07-17 09:56:46 +03:00
commit 375875c7a1
379 changed files with 107059 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
number_1 = int(input('enter 1st number to calculate : '))
number_2 = int(input('enter 2nd number to calculate : '))
number_3 = int(input('enter 3rd number to multiply result by : '))
print('the answer is {0}'.format((number_2+number_1)*number_3))