본문 바로가기
알고리즘/백준

[c] 1000번 A+B 계산하기

by 꾸주니=^= 2023. 1. 27.

 

 

[결과]

#include <stdio.h>
int main(void){
int A, B;
scanf("%d %d",&A, &B);
printf("%d", A+B);
}

'알고리즘 > 백준' 카테고리의 다른 글

[c] 10869번 사칙연산  (0) 2023.01.28
[c] 1008번 A/B 계산하기  (0) 2023.01.28
[c] 10998번 A*B 계산하기  (0) 2023.01.28
[c] 1001번 A-B 계산하기  (0) 2023.01.28
[c] 2557번 Hello World 출력  (0) 2023.01.27