Cod sursa(job #615225)
Utilizator | Data | 8 octombrie 2011 22:31:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
long long int s;
int a,b;
int main()
{ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
s+=a+b;
fout<<s<<'\n';
fout.close();
return 0;
}