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
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