NOIP1996 普及组复赛第 1 题
/*NOIP1996 普及组复赛第 1 题 */
#include<iostream>
#include<iomanip>
#include<cstdio>
#include <bits/stdc++.h>
using namespace std;
using namespace std;
int main( )
{
int a,b;
cin>>a>>b;
cout<<setw(4)<<a<<endl;
cout<<"*"<<setw(3)<<b<<endl;
cout<<"----"<<endl;
if (b>=10)
{
cout<<setw(4)<<b%10*a<<endl;
cout<<setw(3)<<b/10*a<<endl;
cout<<"----"<<endl;
}
cout<<setw(4)<<a*b<<endl;
return 0;
}