Notice
Recent Posts
Recent Comments
Link
«   2025/09   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
Archives
Today
Total
관리 메뉴

바닥부터 기어 올라가는 개발 공부 일지

[BOJ] 백준 알고리즘 1000 A+B 본문

Algorithm

[BOJ] 백준 알고리즘 1000 A+B

처링 2020. 10. 17. 07:21

 

[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