| 比赛 | 假期找点事儿做题吧 | 评测结果 | AAAAAA |
|---|---|---|---|
| 题目名称 | 加法问题 | 最终得分 | 100 |
| 用户昵称 | Hyoi_0Koto | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2017-06-07 08:50:28 | ||
#include<iostream>
#include<cstdio>
#include<cctype>
using namespace std;
float a,b;
inline int mian(){
freopen("aplusb.in", "r", stdin);
freopen("aplusb.out", "w", stdout);
scanf("%f%f",&a,&b);
printf("%0.0lf",a+b);
}
int miku=mian();
int main(){;}