From 620536d034504f24c9fd443294d25a22afd4bdb6 Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Sun, 5 Dec 2021 15:20:27 +0800 Subject: [PATCH] =?UTF-8?q?T174128=20=E9=97=B0=E5=B9=B4=E7=9A=84=E6=95=85?= =?UTF-8?q?=E4=BA=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R64352197 --- Luogu/T174128/T174128.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Luogu/T174128/T174128.py diff --git a/Luogu/T174128/T174128.py b/Luogu/T174128/T174128.py new file mode 100644 index 00000000..da006c59 --- /dev/null +++ b/Luogu/T174128/T174128.py @@ -0,0 +1,9 @@ +import calendar + +if __name__ == "__main__": + n = int(input()) + + if calendar.isleap(n): + print("Wonderful") + else: + print("Orz")