Cod sursa(job #1431010)
Utilizator | Data | 8 mai 2015 22:55:13 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int x, y;
fin >> x >> y;
fout << x + y;
return 0;
}