From 61a6fe1a32dc839ba3225a5419121e3e895dc46e Mon Sep 17 00:00:00 2001 From: Jethro Stapelbroek Date: Wed, 11 May 2022 23:32:29 +0200 Subject: [PATCH] Which is Greater? --- whichisgreater.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 whichisgreater.py diff --git a/whichisgreater.py b/whichisgreater.py new file mode 100644 index 0000000..046eab8 --- /dev/null +++ b/whichisgreater.py @@ -0,0 +1,3 @@ +a, b = map(int, input().split(" ")) + +print(1 if a > b else 0) \ No newline at end of file