Cod sursa(job #614959)

Utilizator Vladinho97Iordan Vlad Vladinho97 Data 8 octombrie 2011 11:06:00
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.17 kb
#include<fstream>
#include<iostream>
using namespace std;
int a,b,suma;
int main()
{
	ifstream f("suma.in");
	ofstream g("suma.out");
	f>>a>>b;
	suma=a+b;
	g<<suma;
}