Cod sursa(job #2238893)
Utilizator | Data | 8 septembrie 2018 12:25:17 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main () {
int a,b,c;
fin>>a>>b;
c=a+b;
fout<<b;
fin.close();
fout.close();
return 0;
}