Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. N = int(input())
  2. q = int(input())
  3. s = N%10
  4. B = N//10
  5. if s == 5 or B == 5:
  6.   print("5 входит")
  7. else:
  8.   print('5 не входит')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement