summaryrefslogtreecommitdiff
path: root/comp/hw/106/2.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/hw/106/2.py')
-rw-r--r--comp/hw/106/2.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/comp/hw/106/2.py b/comp/hw/106/2.py
new file mode 100644
index 0000000..f537aa4
--- /dev/null
+++ b/comp/hw/106/2.py
@@ -0,0 +1,7 @@
+num = int(input("num: "))
+
+if (num % 2) == 0:
+ print("its even")
+else:
+ print("is odd")
+