fork download
  1. l=int(input())
  2. r=int(input())
  3. k=2.54
  4. n=" inch = "
  5. m=" cm"
  6. for i in range (l,r+1):
  7. print('{}{}{:.2f}{}'.format(i,n,k*i,m))
Runtime error #stdin #stdout #stderr 0s 9024KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 1, in <module>
EOFError: EOF when reading a line