fork download
  1. for x in range(1,11):
  2. for y in range(1,11):
  3. print y," X ",x," = ",x*y
  4. raw_input("Press Any Key to Continue: ")
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
Success #stdin #stdout 0.01s 6360KB
stdin
Standard input is empty
stdout
1   X   1   =   1
2   X   1   =   2
3   X   1   =   3
4   X   1   =   4
5   X   1   =   5
6   X   1   =   6
7   X   1   =   7
8   X   1   =   8
9   X   1   =   9
10   X   1   =   10
Press Any Key to Continue: