fork download
  1. print('Please input your number:')
  2. number=int(input())
  3. count=1
  4.  
  5. while count<=10:
  6. print(number,'x',count,'=',number*count)
  7. count+=1
  8.  
Runtime error #stdin #stdout #stderr 0.01s 27696KB
stdin
Standard input is empty
stdout
Please input your number:
stderr
Traceback (most recent call last):
  File "./prog.py", line 2, in <module>
EOFError: EOF when reading a line