Cod sursa(job #866357)

Utilizator andra19Adr I. andra19 Data 27 ianuarie 2013 21:35:42
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<iostream>
#include<fstream>
using namespace std;
int a,b,c;
int main()
{
	ifstream f("numere.in");
	ofstream g("numere.out");
	f>>a>>b;
	c=a+b
	g<<c;
	return 0;
}