0
How to complete 17th project of python
It's asking for program for a output of 9 by adding of 6,3 And also for output of 33 by adding 11,22 How do I code that two tasks on same time.. Once check 17th project
4 Answers
+ 1
By writing code that fulfills the task instructions.
Please link your code if you need help!
+ 1
Don't hard code the input. Use the input() statement to read the two numbers.
0
num = input()
num_1 = input()
total = int(num) + int(num_1)
print(total)
0
How to finished python core project