Cod sursa(job #1433927)
Utilizator | Data | 10 mai 2015 10:58:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | preitmarathon2015 | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
fstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
long long int a,b;
in>>a>>b;
out<<a+b;
in.close();
out.close();
}