Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. N = int(input())
  4. if N == 1 or N == 21 or N == 31 or N == 41 or N == 51 or N == 61 or N == 71 or N == 81 or N == 91:
  5. print('Джону' , N , 'год')
  6. if (N >= 2 and N <= 4) or (N >= 22 and N <= 24) or (N >= 32 and N <= 34) or (N >= 42 and N <= 44) or (N >= 52 and N <= 54) or (N >= 62 and N <= 64) or(N >= 72 and N <= 74) or (N >= 82 and N <= 84) or (N >= 92 and N <= 94):
  7. print('Джону' , N , 'года')
  8. else:
  9. print('Джону' , N , 'лет')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement