比赛 | cmath生日赛 | 评测结果 | AAAAAA |
---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 100 |
用户昵称 | WildRage | 运行时间 | 0.003 s |
代码语言 | C++ | 内存使用 | 13.66 MiB |
提交时间 | 2017-06-13 19:03:47 | ||
#include<iostream> #include<cstdio> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); double a,b; scanf("%lf%lf",&a,&b); printf("%.0f",a+b); }