Cod sursa(job #2409309)
Utilizator | Data | 18 aprilie 2019 21:13:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int main()
{
long long s,a,b;
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}