Eshendo

Untitled

Apr 29th, 2020
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. a = int(input())
  2. counter = 0
  3. if a%6 == 0:
  4.     counter += 1
  5. if a%7 == 0:
  6.     counter += 1
  7. else:
  8.     counter -=1
  9. print(counter)
Advertisement
Add Comment
Please, Sign In to add comment