Problem E
Baby Bites

Unfortunately, talking while having a mouthful sometimes causes Arild to mumble incomprehensibly, making it hard to know how far he has counted. Sometimes you even suspect he loses his count! You decide to write a program to determine whether Arild’s counting makes sense or not.
Input
The first line of input contains an integer
Output
If Arild’s counting might make sense, print the string “makes sense”. Otherwise, print the string “something is fishy”.
Sample Input 1 | Sample Output 1 |
---|---|
5 1 2 3 mumble 5 |
makes sense |
Sample Input 2 | Sample Output 2 |
---|---|
8 1 2 3 mumble mumble 7 mumble 8 |
something is fishy |
Sample Input 3 | Sample Output 3 |
---|---|
3 mumble mumble mumble |
makes sense |