fork download
  1. a=int(input)
  2. for i in range(1,6):
  3. print(a*i,end=" ")
  4.  
  5.  
Runtime error #stdin #stdout #stderr 0.01s 27704KB
stdin
5
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 1, in <module>
TypeError: int() argument must be a string, a bytes-like object or a number, not 'builtin_function_or_method'