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