Cod sursa(job #1661312)
Utilizator | Data | 23 martie 2016 19:48:51 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
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 ("adunae.out");
long long int a,b;
fin>>a>>b;
a+=b;
fout<<a;
}