```int main() { int x = 0; scanf("%d", &x); int y = (x / 10) + 10; if (x <= 10) printf("w"); else printf("v"); return 0; }