Cod sursa(job #1777131)
Utilizator | Data | 12 octombrie 2016 08:36:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.29 kb |
#include <fstream>
#include <string>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
string ilie(long long a, long long b)
{
return to_string(a+b*1L);
}
int main()
{
long long a, b;
fin >> a >> b;
fout << ilie(a, b);
return 0;
}