a=int(input) for i in range(1,6): print(a*i,end=" ")
5
Standard output is empty
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'