//#include <iostream>
//
//using namespace std;
//
//int main()
//{
// int x, i, z=1;
//
// cin >> x;
//
// for(i=1; i<=x; i++)
// {
// z *= i;
// }
//
// cout << z;
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, y, i;
//
// cin >> x >> y;
//
// for(i=x; i<=y; i++)
// {
// if(i%2==1)
// cout << i << " " ;
// }
//
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, y, z=0, i;
//
// cin >> x >> y;
//
// for(i=x; i<=y; i++)
// {
// if(i%2==1)
// z = z+i;
// else
// z = z-i;
// }
// cout << z;
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, y, z=0, i;
//
// cin >> x >> y;
//
// for(i=x; i<=y; i++)
// {
// if(i%2==1){
// z = z+i;
// cout << "+" << i;
// }
// else{
// z = z-i;
// cout << "-" << i;
// }
// }
// cout << "=" << z;
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, i, z=0;
//
// cin >> x;
//
// for(i=1; i<=9; i++)
// {
// z = x * i;
// cout << x << "*" << i << "=" << z << endl;
// }
//}
#include<iostream>
using namespace std;
int main()
{
}



