Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- n = int(input())
- if 10 <= n <= 20 or n % 10 == 0 or 5 <= n % 10 <= 9:
- print(n, 'korov')
- elif n % 10 == 1:
- print(n, 'korova')
- else:
- print(n, 'korovy')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement