Cod sursa(job #882854)

Utilizator TwoOfDiamondsDaniel Alexandru Radu TwoOfDiamonds Data 19 februarie 2013 15:25:50
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

using namespace std;

int main()
{
    int a, b;
    ifstream ("adunare.in");
    ofstream ("adunare.out");

    IN >> a >> b;

    OUT << a + b << "\n";

    return 0;
}