#include <stdio.h>
int main(){
    int d;
    scanf("%d",&d);
    if(d>=12)
        printf("v");
    else
        printf("w");
}