Programming/Baekjoon
[입출력과 사칙연산] 1000. A+B
Oziraper
2020. 7. 14. 15:07
두 수를 입력받고 합을 출력하는 문제
C로 작성했습니다.
#include <stdio.h>
int main() {
int a, b;
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}