Cod sursa(job #2151190)
Utilizator | Data | 4 martie 2018 11:07:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
long long a,b,s;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}