Cod sursa(job #1431556)
Utilizator | Data | 9 mai 2015 10:57:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ifstream f ("adunare.in");
ofstream g ("adunare.out");
long long N, M;
f >> N >> M;
g << N+M;
f.close();
g.close();
return 0;
}