Cod sursa(job #498621)
Utilizator | Data | 5 noiembrie 2010 17:23:30 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 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;
system("pause");
return 0;
}