#include <stdio.h>

int add(int x, int y)
{
	return printf("%*c%*c",x,' ', y,' ');
}

int main()
{
	printf("%d",add(4,5));
	return 0;
}