Cod sursa(job #444432)
Utilizator | Data | 20 aprilie 2010 14:34:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Tema 10D #1 | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
long long a, b,c;
int main ()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
c=a+b;
g<<c;
}