#include <stdio.h>

void foo(int);

int main()
{
	foo(66);

	getchar();
}

void foo(const char* str, int x)
{
	printf("%s %d\n", str, x);
}