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