Cod sursa(job #351176)

Utilizator yrarBogdan Ionut yrar Data 27 septembrie 2009 11:17:15
Problema A+B Scor 100
Compilator cpp Status done
Runda info.conc.sept.2 Marime 0.2 kb
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{ int a, b;
  long s;
  f>>a>>b;
  s=a+b;
  g<<s;
  f.close();
  g.close();
  return 0;
}