Max has a crisis: he has not mentioned Mr. DeMello once in this contest!
Since this is a massive issue, Max begs you to check if he has mentioned him.
He will give you a string of lowercase letters demello
is in the string.
If demello
is in the string, output liar
; otherwise, output what are we going to do?
.
Can you help Max fix his contest?
Constraints
Note that
Subtask 1 [50%]
demello
.
Subtask 2 [50%]
No additional constraints.
Input Specification
The first line will contain demello
.
Output Specification
If demello
is in the string, output liar
; otherwise, output what are we going to do?
.
Sample Input 1
Copy
testtestdemellotest
Sample Output 1
Copy
liar
Sample Input 2
Copy
no
Sample Output 2
Copy
what are we going to do?
Comments