#include <iostream>
using namespace std;
int main()
{
int n;
cout << "请输入一个整数:";
cin >> n;
if(n%3==0)
{
if(n%5==0)
{
cout << "欧耶欧耶" << endl;
}
}
if(n % 3 == 0 && n % 5 == 0)
{
cout << "ouyeouye" << endl;
}
return 0;
}