Cod sursa(job #1524383)
Utilizator | Data | 13 noiembrie 2015 23:57:17 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include "fstream"
using namespace std;
ifstream fin("suma.in");
ofstream fout("suma.out");
int main()
{
long long a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}