fork download
  1. x=float(input())
  2. licznik=x
  3. while x!=0:
  4. if x>licznik:
  5. licznik=x
  6. x=float(input())
  7. print(licznik)# your code goes here
Success #stdin #stdout 0.1s 14124KB
stdin
-3.3
-2.2
-1.1
0
stdout
-1.1