#include <stdio.h>


void aaa();



int main()

{



void aaa();


return 0;

}


void aaa()

{


printf("난 함수1 \n");

return ;

}