fork download
  1. a=int(input(""))
  2. b=int(input(""))
  3. c=int(input(""))
  4. if(a>b and b>c):
  5. print(a)
  6. elif(b>c):
  7. print(b)
  8. else:
  9. print(c)
Runtime error #stdin #stdout #stderr 0s 27632KB
stdin
1 2 3
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
ValueError: invalid literal for int() with base 10: '1 2 3'