Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
darshan527 committed May 5, 2021
1 parent e199ca3 commit ae16003
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Is Both Or Not.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
n = int(input())
if (n % 5) == 0 or (n % 11) == 0:
print("ONE")
elif (n % 5) == 0 and (n % 11) == 0:
if (n % 5) == 0 and (n % 11) == 0:
print("BOTH")
elif (n % 5) == 0 or (n % 11) == 0:
print("ONE")
else:
print("NONE")

0 comments on commit ae16003

Please sign in to comment.