Cod sursa(job #2510343)
| Utilizator | Data | 16 decembrie 2019 13:59:06 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
#include <cstring>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a,b;
fin>>a;
fin>>b;
a = a +b;
fout << a;
}
