Cod sursa(job #176489)
Utilizator | Data | 11 aprilie 2008 12:36:01 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
int main(){ ifstream f("adunare.in"); ofstream g("adunare.out"); long long a,b; f>>a>>b; g<<a+b; f.close(); g.close();return 0;}