Cod sursa(job #686033)
Utilizator | Data | 21 februarie 2012 13:01:33 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.16 kb |
#include<fstream.h>
int main()
{
ifstream a("adunare.in");
ofstream b("adunare.out");
int a1,b1;
a>>a1>>b1;
b<<a1+b1;
return 0;
}