Cod sursa(job #1430057)

Utilizator Gheorghe_Alin_Gabriel_321CAGheorghe Alin-Gabriel 321CA Gheorghe_Alin_Gabriel_321CA Data 7 mai 2015 20:39:50
Problema A+B Scor 100
Compilator cpp Status done
Runda teme_upb Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;

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

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