Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def is_divisible(n,x,y):
  2. if n % x == 1:
  3. return False
  4. elif n % y == 1:
  5. return False
  6. else:
  7. return True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement