#include<stdio.h>
int main(){
int a,b;
int trigger=1;
while(trigger){
scanf("%d %d",&a,&b);
int c=getchar();
if(c==EOF){
break;
}
printf("%d\n",a+b);
}
}
'코딩 공부 > TIL' 카테고리의 다른 글
[C++] 오류 terminate called recursively (0) | 2023.02.06 |
---|---|
Android) Bottom Navigation View 에서 4개 이상 항목을 글자를 보이게 하고 싶을 때 (0) | 2022.11.09 |
CreateThread에서 소켓외의 여러가지 인수를 주는 방법 (0) | 2022.11.08 |
strtok() 문자를 지정해서 문자열을 나눠 받는 함수 (0) | 2022.09.13 |
각 언어마다 입출력을 빠르게 하는 법 (0) | 2022.08.27 |