对于用空格分隔的两个整数,求其和。
5 6
11
#include <stdio.h> int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d",a+b); return 0; }