//By Abid Ali
#include<iostream>
#include<stdlib.h>

using namespace std;

main()
{
int a,c;
cout<<"Enter the Digit and see its Table:-\n";
cin>>c;

for(a=1;a<=20;a++)
{

cout<<c<<"x"<<a<<"="<<a*c<<"\n";
}

system("pause");

}