记录编号 |
209399 |
评测结果 |
AWAWWAAAAAAAWAAWWWWAWWAWAWAAWWWAAWAWWWWWAAWWWWWAAW |
题目名称 |
加法问题 |
最终得分 |
46 |
用户昵称 |
TCtower |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.025 s |
提交时间 |
2015-11-22 14:56:09 |
内存使用 |
13.66 MiB |
显示代码纯文本
/*
昔日龌龊不足夸,今朝放荡思无涯。
春风得意马蹄疾,一日看尽长安花。
*/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <cmath>
#include <algorithm>
#define LOCAL
using namespace std;
int main(){
#ifdef LOCAL
freopen("aplusb.in", "r", stdin);
freopen("aplusb.out", "w", stdout);
#endif // LOCAL
double a, b;
scanf("%lf%lf", &a, &b);
printf("%d", (int)(a + b));
return 0;
}