Cod sursa(job #950465)

Utilizator robert_stefanRobert Stefan robert_stefan Data 16 mai 2013 22:04:51
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include<fstream>
#define IN "adunare.in"
#define OUT "adunare.out"

using namespace std;

ifstream in(IN);
ofstream out(OUT);

int A, B;

int main()
{
	in>>A>>B;
	out<<A+B<<'\n';
	in.close();
	out.close();
	return 0;
}