Cod sursa(job #754871)
Utilizator | Data | 3 iunie 2012 21:25:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
ifstream f("A+B.in");
ofstream g("A+B.out");
int main
{
int a,b;
f>>a>>b;
g<<a+b<<'\n';
return 0;
}