Cod sursa(job #882856)

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

using namespace std;

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

    IN >> a >> b;

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

    return 0;
}