fork download
  1. x=float(input())
  2. y=float(input())
  3. if x>y:
  4. print(x)
  5. else:
  6. print(y)# your code goes here
Success #stdin #stdout 0.11s 14116KB
stdin
-2.5
2.5
stdout
2.5