1000번 작성일 2020-04-07 Edited on 2022-12-26 In Computer , Algorithm , BaekJun Disqus: Symbols count in article: 57 Reading time ≈ 1 mins. 문제두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. 입력첫째 줄에 A와 B가 주어진다. (0 < A, B < 10) 출력첫째 줄에 A+B를 출력한다. 예제 입력 11 2예제 출력 13 123456789101000번 .#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a+b); return 0;}