Write a program in python script …

CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Priyanka Kalra 5 years ago
- 1 answers
Related Questions
Posted by Ananya Ps 1 year, 3 months ago
- 2 answers
Posted by Ishika Rathore 1 year, 4 months ago
- 1 answers
Posted by Sarvagya Thakur 1 year, 3 months ago
- 1 answers
Posted by Raju Tandan 1 year, 3 months ago
- 1 answers
Posted by Manya Sharma 1 year, 4 months ago
- 0 answers
Posted by Account Deleted 4 months, 2 weeks ago
- 1 answers

myCBSEguide
Trusted by 1 Crore+ Students

Test Generator
Create papers online. It's FREE.

CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
myCBSEguide
Gaurav Seth 5 years ago
Python Program to Add Two Numbers
<textarea data-settings="" readonly="readonly" wrap="soft"></textarea>
a = int(input("enter first number: "))
b = int(input("enter second number: "))
sum = a + b
print("sum:", sum)
Output
enter first number:5
enter second number:7
sum: 12
0Thank You