Cod sursa(job #2331832)
| Utilizator | Data | 29 ianuarie 2019 23:19:08 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
int main(){
ofstream fout("adunare.out");
ifstream fin("adunare.in");
long long a,b;
fin >> a >> b;
fout << a + b;
}
