fork download
  1. x=int(input())
  2. y=int(input())
  3.  
  4. if x>y: print(x)
  5.  
  6. else: print(y)
Success #stdin #stdout 0.02s 7328KB
stdin
3
4
stdout
4