Cod sursa(job #1411816)

Utilizator jurjstyleJurj Andrei jurjstyle Data 31 martie 2015 22:56:14
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <iostream>
#include <fstream>

using namespace std ;

ifstream f ("sum.in") ;
ofstream g ("sum.out") ;


int main()
{
  int a , b ;
  f >> a >> b ;
  g << a + b ;
}