Cod sursa(job #1362260)

Utilizator andrei_xdsParasca Andrei andrei_xds Data 26 februarie 2015 11:20:48
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
using namespace std;
#include <fstream>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
	int a,b;
	f>>a>>b;
	g<<a+b;
	return 0;
}