#include <stdio.h>

hoge(n, msg)
int	n;
char	*msg;
{
	printf("%d:%s\n", n, msg);
}

int main()
{
	hoge(42, "hoge");
	return 0;
}
