fork download
  1. i = 0
  2. x = int( input( ) )
  3. while i < 5 :
  4. y = int( input( ) )
  5. if y < x :
  6. x = y
  7. i = i + 1
  8. print( y )
  9.  
Success #stdin #stdout 0.02s 9252KB
stdin
56
78
90
20
40
30
stdout
30