#include <stdio.h>

void main(void)
{
float f = 10;

f/=5;

if(f==2)
{
printf("ふひひ\n");

retrurn;
}

printf("ドゥフフ\n");

return;
}