What is the program to find …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Shravan Acharya 2 years, 6 months ago
- 1 answers
Related Questions
Posted by Sarvagya Thakur 1 year, 1 month ago
- 1 answers
Posted by Ishika Rathore 1 year, 2 months ago
- 1 answers
Posted by Ananya Ps 1 year, 1 month ago
- 2 answers
Posted by Raju Tandan 1 year, 1 month ago
- 1 answers
Posted by Account Deleted 2 months, 2 weeks ago
- 1 answers
Posted by Manya Sharma 1 year, 2 months ago
- 0 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
Preeti Dabral 2 years, 6 months ago
def check(n):
if (n < 2):
return (n % 2 = = 0)
return (check (n-2))
#-- main --
n = int (raw_input ("Enter a number:"))
if check (n):
print ("Number is Even")
else:
print ("Number is Odd")
0Thank You