Cod sursa(job #2351293)
Utilizator | Data | 22 februarie 2019 10:19:23 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <fstream>
#include <algorithm>
using namespace std;
long int n,i,a,v[101],j,c,k,a2,b;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}