比赛 | 郑州市创意编程大赛复现赛 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 100 |
用户昵称 | djyqjy | 运行时间 | 0.032 s |
代码语言 | C++ | 内存使用 | 3.51 MiB |
提交时间 | 2024-11-25 20:15:27 | ||
#include<bits/stdc++.h> using namespace std; int a,b; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); scanf("%d%d",&a,&b); printf("%d",a+b); return 0; }