fork download
  1. try:
  2. while True:
  3. n = int(input())
  4. if n == 19:
  5. print(n)
  6. break
  7. except EOFError:
  8. print("IMPOSSIBLE")
  9.  
Success #stdin #stdout 0.1s 14072KB
stdin
5
6
8
1
4
24
stdout
IMPOSSIBLE