What is the result of 12 + 1 in language?
#include <stdio.h>

main()
{
	int num;
	
	num = 12 + 1;
	printf("%d", num);
}