공부/백준
2558 c 백준
ijadon
2022. 2. 6. 01:08
#include <stdio.h>
int main(){
int A, B;
scanf("%d %d", &A,&B);
printf("%d", A+B);
}