Cod sursa(job #497806)

Utilizator andrey_porscheGraur Andrei andrey_porsche Data 3 noiembrie 2010 12:05:23
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream>
using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int main()
{
	int a,b,c;
	in>>a>>b;
	c=0;
	c=a+b;
	out<<c;
	return 0;
}