PKU/풀이2012. 5. 6. 21:29

a,b를 입력받아서 a+b를 출력하면 된다.


#include <stdio.h>
int main(){
int a,b;
scanf("%d %d",&a, &b);
printf("%d\n",a+b);
return 0;
}



번역:http://gshscs.tistory.com/1

Posted by 알 수 없는 사용자