#include <stdio.h>
int main(void)
{
printf("저장된 정수는 %d이며, 저장된 문자열은 %s입니다.\n", 123, "C언어");
return 0;
}