Cod sursa(job #1661315)
Utilizator | Data | 23 martie 2016 19:49:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main ()
{
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long long int a,b;
fin>>a>>b;
a+=b;
fout<<a;
}