#include <stdio.h>
int main(void)
{
int num01 = 15, num02 = 8;
printf("첫 번째 수는 %d이고, 두 번째 수는 %d입니다.\n", num01, num02);
return 0;
}