Cod sursa(job #683308)

Utilizator IuLyFanManda Iulian IuLyFan Data 20 februarie 2012 14:08:19
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<fstream>
using namespace std;
ifstream in("A+B.in");
ofstream out("A+B.out");
long a,b;
int main()
{
	in>>a>>b;
	out<<a+b;
}