//The output of 9 * 9 formula   9*9乘法口诀表

public class Sixteen {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

 //两个循环
		for(int i=9;i>0;i--)
		{
			for(int j=9;j>0;j--)
			{
				int temp=i*j;
				System.out.println(temp+"="+i+"*"+j);
			}
		}
	}

}