Cod sursa(job #1481608)
Utilizator | Data | 4 septembrie 2015 21:48:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | fpc | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long long a , b , s;
fin >> a >> b;
s = a + b;
fout << s;
return 0;
}