Cod sursa(job #1437166)

Utilizator StfnutssJianu Stefanut-Alexandru Stfnutss Data 17 mai 2015 01:04:45
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.3 kb
#include <iostream>
#include <fstream>

using namespace std;

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
	fstream f("adunare.in");
	ofstream g("adunare.out");
	int a,b;
	f>>a>>b;
	g<<a+b;
	return 0;
}