Cod sursa(job #1568124)

Utilizator SabjayProdan Alexandru Sabjay Data 13 ianuarie 2016 22:04:57
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include<iostream>
#include<fstream>

using namespace std;

long long a,b;

ifstream fin ("a+b.in");
ofstream fout ("a+b.out");

int main()
{
	fin>>a;
	fin>>b;
	fout<<a+b;
	return 0;
}