fork download
  1. a = int(input())
  2. if a % 10 == 0:
  3. print("YES")
  4. else:
  5. print("NO")
Success #stdin #stdout 0.08s 14136KB
stdin
40
stdout
YES