#include <iostream>
using namespace std;
int main()
{
int i, n = 3, tmp, ans = 0;
for (i = 0; i < n; i++){
cin >> tmp;
if (tmp <= 168){
ans = tmp;
break;
}
}
if (ans == 0)
cout << "NO CRASH" << endl;
else
cout << "CRASH " << ans << endl;
system("pause");
}
poj 2578 Keep on Truckin'
最新推荐文章于 2017-06-30 18:37:19 发布