简单的及其水的A+B

来源:互联网 发布:el表达式获取js变量 编辑:程序博客网 时间:2024/06/11 00:29

如题,A+B问题

作者用C++吧

贴代码

#include<iostream>
#include<cstdio>
using namespace std;

int main()
{

     int a,b,c;

    scanf("%d%d",&a,&b);

    c=a+b;

    printf("%d\n",c);

    return 0;
}

0 0