Cod sursa(job #972502)
Utilizator | Data | 11 iulie 2013 21:02:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b;
int main()
{
f>>a;
f>>b;
g<<a+b;
}