#include<stdio.h>

int main ()
{

int fun(void);

fun();

return 0;

}

int fun( void )
{

printf("Pavan\n");

return 0;

}
