Python
Python Online Certification
›
Compiler
main.py Save Run Shell Clear
1 num1 = int(input("Enter the first number")) Enter the first number101
2 num2 = int(input("Enter the second number")) Enter the second number201
3 sum = num1 + num2 the sum of th numbers is 302
4 print("the sum of th numbers is",sum) >