Cod sursa(job #2312924)
| Utilizator | Data | 5 ianuarie 2019 19:37:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("lgput.in");
ofstream fout("lgput.out");
int main() {
int a, b;
fin >> a >> b;
cout << a + b;
}
