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 4 years, 11 months ago
- 1 answers
Related Questions
Posted by Manya Sharma 1 year, 2 months ago
- 0 answers
Posted by Raju Tandan 1 year, 1 month ago
- 1 answers
Posted by Ishika Rathore 1 year, 2 months ago
- 1 answers
Posted by Sarvagya Thakur 1 year, 2 months ago
- 1 answers
Posted by Ananya Ps 1 year, 2 months ago
- 2 answers
Posted by Account Deleted 2 months, 3 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
Gaurav Seth 4 years, 11 months 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