#include <stdio.h>

void congratulations()
{
while(1) // infinite loop
{
printf("Congratulations!!!");
}
}