#include <stdio.h>
extern int hoge();
int hoge()
{
    puts("死ね");
    return 0;
}
int main(int a, char **b)
{
    hoge();
    return 0;
}