#include <stdio.h>
void karthick()
{
    printf("Karthick loves dharaneesh");
}
int main() 
{
    karthick()"\n";
    karthick();
    return 0;
}