fork download
  1. x=int(input())
  2. y=int(input())
  3. z=int(input())
  4. if x>y and x>z: print(x)
  5. if y>x and y>z: print(y)
  6. if z>x and z>y: print(z)
  7.  
Success #stdin #stdout 0.12s 14116KB
stdin
3
3
2
stdout
Standard output is empty