for x in range(1,11):
    for y in range(1,11):
        print y,"  X  ",x,"  =  ",x*y
    raw_input("Press Any Key to Continue: ")
     


    
    
