Cod sursa(job #561873)

Utilizator andreipasalauPasalau Andrei andreipasalau Data 21 martie 2011 21:46:16
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{
   f>>a;
f>>b;
g<<a+b;  
    return 0;
}