Cod sursa(job #1204626)

Utilizator vjudge1vjudge vjudge1 Data 3 iulie 2014 15:08:09
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include<fstream>
using namespace std;
int a,b;
int main()
{
	ifstream f("adunare.in");
	ofstream g("adunare.out");
	f>>a>>b;
	g<<a+b;
}