時間制限 : sec, メモリ制限 : KB
English / Japanese  

九九

以下のような表記で、九九を出力して終了するプログラムを作成してください。×記号の代わりに、小文字の x を使用してください。

1x1=1
1x2=2
.
.
9x8=72
9x9=81

Input

この問題に入力はありません。

Output

1x1=1
1x2=2
.
.
9x8=72
9x9=81

Template for C

#include<stdio.h>

int main(){

    return 0;
}

Template for C++

#include<iostream>
using namespace std;

int main(){

    return 0;
}

Template for Java

class Main{
    public static void main(String[] a){

    }
}