Cod sursa(job #798307)

Utilizator stefanutz13Smarandache Stefan stefanutz13 Data 16 octombrie 2012 10:53:08
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
#include<iostream>

using namespace std;

int main()
{
	int a,b,s=0;
	ifstream f("ab.in");
	ofstream g("ab.out");
	f>>a>>b;
	s=a+b;
	g<<s;
	return 0;
}