#include<iostream>
using namespace std;
int main()
{
int n1, n2, n3, n4;
while (cin >> n1 >> n2 >> n3 >> n4)
{
if (n1 < n2&&n2 < n3&&n3 < n4)
cout << "Fish Rising" << endl;
else if (n1>n2&&n2>n3&&n3>n4)
cout << "Fish Diving" << endl;
else if (n1 == n2&&n2 == n3&&n3 == n4)
cout << "Fish At Constant Depth" << endl;
else cout << "No Fish" << endl;
}
return 0;
}
1275 有鱼的声音
最新推荐文章于 2018-06-27 22:21:00 发布