Cod sursa(job #765700)
| Utilizator | Data | 8 iulie 2012 21:44:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int a, b, c;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
fin >> a >> b;
fout << a + b;
return 0;
}
