0
Simple Calculator in python quiz 2nd. How it will be done?
Didn't understand about first two cases
2 Respuestas
+ 1
Remind me what the challenge is?
If it's the one that says take two integer input and print the sum, then you need to create two variables and assign an integer input to them. You can make input expect an integer by changing it to " int(input()) "
You use " + " to add the variables which contain the numbers.
You can use " print() " to output the sum.
I can give you the answer but try this yourself first.
+ 1
print(int(input()) + int(input()))