#include <stdio.h>
#include <stdlib.h>

int main()
{
    int A,B;
    scanf("%d%d",&A,&B);
    printf("%d",A+B);
    return 0;
}

更多推荐

C语言 基础编程 A+B求和