Cod sursa(job #942244)

Utilizator Udar27Balc Radu Udar27 Data 21 aprilie 2013 18:08:08
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb
#include<fstream>
using namespace std;
ifstream f("d.in");
ofstream g("d.out");
int a,b,s;
int main()
{ f>>a>>b;
  s=a+b;
  g<<s;
  return 0;
}