#include <stdio.h>
#include <stdlib.h>
int main(void)
{
char chInteger [10] = "";
int nCount = 0;
int nInteger = 0;
while(1)
{
chInteger[nCount] = getchar();
if(chInteger[nCount] == '\n')break;
nCount++;
}
nInteger = atoi(chInteger) + 10;
printf("%d\n",nInteger);
return 0;
}
댓글 없음:
댓글 쓰기