Cod sursa(job #1149711)
Utilizator | Data | 22 martie 2014 10:42:09 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long a,b,c;
f>>a>>b;
c=a+b;
g<<c;
f.close();
g.close();
return 0;
}