From 5fcf80278e8a7bafd0fd6bcb6e525e3920034c01 Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Fri, 13 May 2022 21:29:42 +0200 Subject: [PATCH] IsItHalloween.com --- isithalloween.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 isithalloween.py diff --git a/isithalloween.py b/isithalloween.py new file mode 100644 index 0000000..ffdd1d8 --- /dev/null +++ b/isithalloween.py @@ -0,0 +1,6 @@ +d = input() + +if d.strip() == "OCT 31" or d.strip() == "DEC 25": + print("yup") +else: + print("nope")