We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c75fda commit a1ae10fCopy full SHA for a1ae10f
Python If-Else/main.py
@@ -0,0 +1,10 @@
1
+n=int(input())
2
+if n%2!=0:
3
+ print("Weird")
4
+elif n%2==0 and n>=2 and n<=5:
5
+ print("Not Weird")
6
+elif n%2==0 and n>=6 and n<=20:
7
8
+elif n>20:
9
10
+
0 commit comments