比赛 cmath生日赛 评测结果 WAAWWW
题目名称 加法问题 最终得分 33
用户昵称 asd 运行时间 0.003 s
代码语言 C++ 内存使用 13.66 MiB
提交时间 2017-06-13 22:08:53
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<string>

using namespace std;

inline int read()
{
	int x=0;
	char c=getchar();
	while(c<'0'||c>'9')c=getchar();
	while(c>='0'&&c<='9')x=x*10+c-'0',c=getchar();
	return x;
}

int main()
{
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	
	int n=read();
	int m=read();
	
	printf("%d",n+m);
	
	return 0;
}