Cod sursa(job #830721)
| Utilizator | Data | 7 decembrie 2012 15:56:35 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | Marime | 0.17 kb |
#include <iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}