알고리즘/백준
[c] 1000번 A+B 계산하기
꾸주니=^=
2023. 1. 27. 15:18
[결과]
#include <stdio.h>
int main(void){
int A, B;
scanf("%d %d",&A, &B);
printf("%d", A+B);
}