Cod sursa(job #1190432)

Utilizator chockoGarleanu Iosif chocko Data 25 mai 2014 13:03:03
Problema A+B Scor 100
Compilator cpp Status done
Runda itmarathon Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream f("adunare.in");
    ofstream g("adunare.out");
    int a,b;
    f>>a>>b;
    g<<a+b<< endl;
    return 0;
}