Cod sursa(job #1189186)

Utilizator andreistefyAndrei andreistefy Data 21 mai 2014 19:00:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.25 kb
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
    ifstream inf("adunare.in");

    int a;
    int b;

     inf >> a;
     inf >> b;

    ofstream outf ("adunare.out");
    outf << a+b ;


    return 0;
}