记录编号 570591 评测结果 AAAAAAAAAA
题目名称 加法问题 最终得分 100
用户昵称 Gravatar久恋诚心 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2022-04-11 20:04:52 内存使用 0.00 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int main(){
    freopen ("aplusb.in","r",stdin);
    freopen ("aplusb.out","w",stdout);
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d\n",a+b);
    return 0;
} 
//久恋诚心yyds