#include <stdio.h>
#include <string.h>

int main(void) 
{
	char a[2];
	int b = 10;
	sprintf(a, "%d", b);
	printf("%d\n", b); // 0
	return 0;
}
