#include<iostream>
#include<cmath>
const double PI = 3.141593;
using namespace std;
int main() {
int T;
cin >> T;
if (T == 1) {
cout << "I love Luogu!";
} else if (T == 2) {
cout << 2 + 4 << " " << 10 - 2 - 4;
} else if (T == 3) {
cout << 3 << endl;
cout << 12 << endl;
cout << 2;
} else if (T == 4) {
cout << 166.667;
} else if (T == 5) {
cout << 20;
} else if (T == 6) {
cout << (int)(sqrt(36+81));
} else if (T == 7) {
int a=100;
a+=10;
cout << a << endl;
a-=20;
cout << a << endl;
cout << 0;
} else if (T == 8) {
cout << PI*2*5 << endl << PI*5*5 << endl << 4/3*PI*5*5*5;
} else if (T == 9) {
int a=1;
a++;
a*=2;
a++;
a*=2;
a++;
a*=2;
cout << a;
} else if (T == 10) {
cout << 9;
} else if (T == 11) {
cout << 1.0*100/3;
} else if (T == 12) {
cout << 13 << endl << "R";
} else if (T == 13) {
cout<<(int)(pow(4/3*PI*(4*4*4+10*10*10),1.0*1/3));
} else if (T == 14) {
cout << 50;
}
return 0;
}