Cod sursa(job #2359303)
Utilizator | Data | 28 februarie 2019 19:31:18 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
#include <fstream>
using namespace std;
long long suma(long long a, long long b)
{
return a+b;
}
int main()
{
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long long x, y;
fin >> x >> y;
fout << suma(x, y);
return 0;
}