Cod sursa(job #2692069)
| Utilizator | Data | 31 decembrie 2020 13:58:12 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream fin;
ofstream fout;
fin.open("adunare.in");
fout.open("adunare.out");
int a;
fin >> a;
int b;
fin >> b;
fout << a + b;
}
