Cod sursa(job #791531)

Utilizator dopeBoyCiprian Andrei B dopeBoy Data 24 septembrie 2012 15:32:35
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<iostream>
#include<fstream>
using namespace std;
ifstream f("suma.in");
ofstream g("suma.out");
int a,b;
int main()
{ 
  f>>a>>b;
  g<<a+b;
}