Skip to content
Snippets Groups Projects
Commit a04ad8f1 authored by KimMinSeob's avatar KimMinSeob
Browse files

Upload New File

parent 277880f9
No related branches found
No related tags found
No related merge requests found
ifand.py 0 → 100644
print("enter the number:")
b= int(input())
if b>10 and b%2 ==0:
print("this number bigger than 10 and even")
elif b>10 and b%2 ==1:
print("this number bigger than 10 and odd")
elif b%2 ==0:
print("this number smaller than 10 and even")
else:
print("this number smaller than 10 and odd")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment