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