Cod sursa(job #2621695)
Utilizator | Data | 30 mai 2020 17:19:10 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include<iostream>
#include<fstream>
int main(){
int a;
int b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a;
fin>>b;
fin.close();
fout<<a+b;
fout.close();
}