记录编号 450669 评测结果 TTTTTTTTTTTTTTTTTTTT
题目名称 秘术「天文密葬法」 最终得分 0
用户昵称 Gravatarxjr 是否通过 未通过
代码语言 C++ 运行时间 60.030 s
提交时间 2017-09-16 17:15:59 内存使用 0.20 MiB
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <algorithm>
using namespace std;

int read() {
	int x = 0, f = 1; char c = getchar();
	while(!isdigit(c)){ if(c == '-') f = -1; c = getchar(); }
	while(isdigit(c)){ x = x * 10 + c - '0'; c = getchar(); }
	return x * f;
}

int main() {
	freopen("aplusb.in", "r", stdin);
	freopen("aplusb.out", "w", stdout);
	
	double a = read(), b = read();
//	scanf("%lf%lf", &a, &b);
	printf("%.0lf\n", a + b);
	
	return 0;
}