Cod sursa(job #498620)
Utilizator | Data | 5 noiembrie 2010 17:22:53 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.28 kb |
#include<iostream>
#include<fstream.h>
using namespace std;
int main()
{
int a,b,suma=0;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
suma=a+b;
g<<suma;
f.close();
g.close();
system("pause");
return 0;
}