#include <iostream>
using namespace std;
void main()
{
int n;
cin >> n;
if
(n == 1)
cout <<
"is one"
;
else
(n == 2)
"is two"
(n == 3)
"is three"
"more than three"
getchar();
}