Cod sursa(job #893464)

Utilizator dinofrostyAonofriesei Raul dinofrosty Data 26 februarie 2013 15:52:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream>

using namespace std;

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