/*
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x >> y;
cout << x << "+" << y << "=";
cout << x+y << endl;
cout << x << "-" << y << "=";
cout << x-y << endl;
cout << x << "*" << y << "=";
cout << x*y << endl;
cout << x << "/" << y << "=";
cout << x/y << endl;
}
*/
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, y, z;
// cin >> x >> y >> z;
// if(x>y&&x<z)
// cout << x;
// else if(x<y&&x>z)
// cout << x;
// else if(y>z&&y<x)
// cout << y;
// else if(y<z&&y>x)
// cout << y;
// else if(z==y)
// cout << z;
// else if(z==x)
// cout << z;
// else if(y==x)
// cout << y;
// else
// cout << z;
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x, y, z;
// cin >> x >> y >> z;
// if(x>y&&x>z)
// if(x<y+z)
// cout << "yes";
// else
// cout << "no";
// else if(y>x&&y>z)
// if(y<x+z)
// cout << "yes";
// else
// cout << "no";
// else if(z>x&&z>y)
// if(z<x+y)
// cout << "yes";
// else
// cout << "no";
// else if(x==y&&y==z)
// cout << "yes";
// else
// cout << "no";
//// if(z<x+y)
//// cout << "yes";
//// else if(y<x+z)
//// cout << "yes";
//// else if(x<y+z)
//// cout << "yes";
//// else if(z==x+y||y==x+z||x==y+z)
//// cout << "no";
//// else
//// cout << "no";
//
//}
//#include<iostream>
//
//using namespace std;
//
//int main() {
// int x, y, z, t;
//
// cin >> x >> y >> z;
//
// if(x > y) {
// t = x;
// x = y;
// y = t;
// }
// if(y > z) {
// t = y;
// y = z;
// z = t;
// }
//
// if(x + y > z) {
// cout << "yes";
// }
// else {
// cout << "no";
// }
//
//
//}
//#include<iostream>
//
//using namespace std;
//
//int main() {
// int x;
//
// cin >> x;
//
// switch( x ) {
// case 12121:
// case 1:
// cout << "111111111";
// break;
// case 2:
// cout << " 222";
// case 3:
// cout << "3333";
// break;
// case 4:
// case 5:
// case 6:
// cout << "456456";
// break;
// }
//
//
//}
// 1202 1207
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x;
// cin >> x;
//
// switch(x/10)
// {
//
// case 9:
// case 10:
// cout << "A";
// break;
// case 8:
// cout << "B"; //80~89
// break;
// case 7:
// cout << "C";
// break;
// case 6:
// cout << "D";
// break;
// default:
// cout << "F";
// }
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int x;
// cin >> x;
//
// if(x<60)
// cout << "F";
// else if(x>=60&&x<70)
// cout << "D";
// else if(x>=70&&x<80)
// cout << "C";
// else if(x>=80&&x<90)
// cout << "B";
// else
// cout << "A";
//}
/*
#include<iostream>
using namespace std;
int main()
{
int x, y, z, a;
cin >> x >> y >> z >> a;
if(x+y+z+a==1)
cout << "도";
else if(x+y+z+a==2)
cout << "개";
else
}
*/
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int a, b, c, d;
// cin >> a >> b >> c >> d;
//
// switch(a+b+c+d){
//case 0:
// cout << "모";
// break;
//case 1:
// cout << "도";
// break;
//case 2:
// cout << "개";
// break;
//case 3:
// cout << "걸";
// break;
//case 4:
// cout << "윷";
// break;
// }
//}
//
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// double a, b;
// double c;
// double d;
// cin >> a >> b;
// if(c=(a-100)*0.9);
// d=((b-c)*100)/c;
// if(d>20)
// cout << "비만";
// else if(d<10)
// cout << "정상";
// else
// cout << "과체중";
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// double a, b;
// double c;
// double d;
// double e;
// cin >> a >> b;
// if(a<150){
// e=a-100;
// }
// else if(a>=150&&a<=160){
// e=((a-150)/2)+50;
// }
// else if(a>160){
// e=(a-100)*0.9;
// }
//
// if(c=((b-e)*100)/e)
// if(c>20)
// cout << "비만";
// else if(c<10)
// cout << "정상";
// else
// cout << "과체중";
//}
//#include<iostream>
//
//using namespace std;
//
//int main() {
// int i, n;
//
// cin >> n; // n = 5
//
// // for(init; condition; increase/decrease)
// for(i=0; i<n; i++) {
// cout << i << " ";
// }
// cout << endl;
//
// for(i=n-1; i>=0; i--) {
// cout << i << " ";
// }
//
//
//}
//#include<iostream>
//
//using namespace std;
//
//int main() {
// int i;
// for(i=1; 101>i; i++) {
// cout << i << " ";
// }
//}
//#include<iostream>
//
//using namespace std;
//
//int main()
//{
// int i, n;
// cin >> n;
// for(i=1; i<=n; i++) {
// cout << i << " ";
// }
//}