diff --git a/problems/easy/easy_q1.py b/problems/easy/easy_q1.py index 339673d..3045837 100644 --- a/problems/easy/easy_q1.py +++ b/problems/easy/easy_q1.py @@ -7,15 +7,4 @@ else: print(f"{num} is Even") except ValueError: - print("Enter only INTEGER that is ONLY NUMBER") - - -num = int(input("Enter a number: ")) - -if (num %2) == 0: - print("{0} is even".format(num)) -else: - - print(f"{num} is Even") - - \ No newline at end of file + print("Enter only INTEGER that is ONLY NUMBER") \ No newline at end of file