Write a phyton script of making a calculator which will give addition output .
Answers
Answered by
1
Print (‘ addition calculator ‘)
X = input(‘what is the first number in the sum ? ‘)
Y = input(‘what is the second number you want in the sum ? ‘)
Print(X + Y)
This the script ?
X = input(‘what is the first number in the sum ? ‘)
Y = input(‘what is the second number you want in the sum ? ‘)
Print(X + Y)
This the script ?
Similar questions