#include <stdio.h>#include <stdlib.h>#include <iostream>#include <string.h>#include <limits.h>using namespace std;int main(void){int n,begin = 0,end = INT_MAX;int x;char str[10];while( cin >> n && n ){getchar();begin = 0,end = INT_MAX; while ( gets(str) && strcmp(str,"right on") ) {if( strcmp(str,"too high") == 0 && n < end )end = n;elseif( strcmp(str,"too low") == 0 && n > begin )begin = n;cin >> n;getchar();}if( n > begin && n < end )printf("Stan may be honestn");elseprintf("Stan is dishonestn");} return 0;}


