fork download
  1. a=input(int())
  2. b=input(int())
  3. c=b//a
  4. print(c)
Runtime error #stdin #stdout #stderr 0.02s 28384KB
stdin
4
14
stdout
00
stderr
Traceback (most recent call last):
  File "./prog.py", line 3, in <module>
TypeError: unsupported operand type(s) for //: 'str' and 'str'