#include <stdio.h>

int main() {
    int n;
    scanf("%d", &n);
    if(n <= 10)
        printf("w");
    else
        printf("v");
    return 0;
}