#include int main(void){ while (1) { int c = getchar(); if (c == 'n') break; } return 0; }