Cod sursa(job #672602)

Utilizator Drgx96Rat Gabriel Catalin Drgx96 Data 2 februarie 2012 19:55:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include <fstream>
long long int a,b;
using namespace std;
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
}