Cod sursa(job #936440)
Utilizator | Data | 7 aprilie 2013 09:57:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.17 kb |
#include<fstream>
using namespace std;
long long a,b;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
}