bzoj1000 A+B Problem

好吧,各大oj的开头。
#include<cstdio>
#include<string>
#include<iostream>
using namespace std;

int main()
{
	int a,b;
	cin>>a>>b;
	cout<<a+b<<endl;
	return 0;
}


一道伟大的题目,不亚于Hello World的重要性


从高中pascal到大学C++,新的历程,祝我顺利,祝福曾经和未来在竞赛路上陪伴我的好友们

你可能感兴趣的:(bzoj)