From 2c1473b5ed77ffbc5a031828cf4c8e675a4ce2f4 Mon Sep 17 00:00:00 2001 From: UtkarshPrakash <48208181+UtkarshPrakash@users.noreply.github.com> Date: Sat, 26 Oct 2019 12:14:38 +0530 Subject: [PATCH] Update 16123004.py --- Divisible by 2/16123004.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Divisible by 2/16123004.py b/Divisible by 2/16123004.py index a8673e7..a14d49e 100644 --- a/Divisible by 2/16123004.py +++ b/Divisible by 2/16123004.py @@ -1,5 +1,7 @@ n = int(input()) -# TODO Fill Code here - +if (n%2==0): + return True +else : + return False