Cod sursa(job #415356)

Utilizator iulishorIulian Popescu iulishor Data 11 martie 2010 10:49:35
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
using namespace std;
long long a,b,s;
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a;
	f>>b;
	s=a+b;
	g<<s;
	return 0;
}