| 记录编号 | 361656 | 评测结果 | AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 46 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 0.026 s | ||
| 提交时间 | 2017-01-04 19:29:51 | 内存使用 | 13.66 MiB | ||
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
double A,B;
int C;
cin>>A>>B;
C=A+B;
cout<<C;
return 0;
}