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