• 코드:
 
1
for col in range(2, 10):
2
    for row in range(1, 10):
3
        print (col, " x ", row, " = ", col * row)
표준입력 & 실행옵션