바닥부터 기어 올라가는 개발 공부 일지
[BOJ] 백준 알고리즘 1000 A+B 본문
[C]
#include <stdio.h>
int main()
{
int A;
int B;
scanf("%d %d", &A, &B);
printf("%d\n",A+B);
return 0;
}
'Algorithm' 카테고리의 다른 글
[BOJ] 백준 알고리즘 2557 Hello World (0) | 2020.11.01 |
---|
Comments