#include<iostream>
#include<vector>
using namespace std;
int main()
{
int a, b, c;
vector<int> v;
while (cin >> a >> b >> c)
{
if (a <= 168)
v.push_back(a);
if (b <= 168)
v.push_back(b);
if (c <= 168)
v.push_back(c);
if (v.empty())
cout << "NO CRASH" << endl;
else{
cout << "CRASH ";
for (auto c : v)
cout << c << ' ';
cout << endl;
}
v.clear();
}
return 0;
}
1037 Keep on Truckin'
