// 3 resources files needed : IOstream / Vector / string
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
int answer = -1; // out of case value.
vector<string> product = {"Expresso","Americano","Capucino","Latte"};
while (cin >> answer) {
if ( answer > 4 || answer < 1 ) { return false; }
cout << product.at(answer-1) << endl; // to keep the good array index for 'product' : "answer -1"
}
}