Cod sursa(job #1353555)

Utilizator bogdanluncasubogdan bogdanluncasu Data 21 februarie 2015 14:24:15
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.16 kb
#include <iostream>
#include <fstream>
using namespace std;
int main()
{int a,b;
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
}