Cod sursa(job #592390)
Utilizator | Data | 28 mai 2011 11:19:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include<fstream.h>
#include<iostream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
using namespace std;
int main()
{
f>>a>>b;
g<<a+b<<endl;
return 0;
}