#include <stdio.h> int main() { int s,t1,t2; scanf("%d",&s); t1=s; t2=(float)s/10.0+10; if(t1<t2) putchar('w'); else putchar('v'); return 0; }