Cod sursa(job #1551215)

Utilizator mesbotMeszaros Botond mesbot Data 15 decembrie 2015 15:18:19
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
    long int A=0;
    long int B=0;

    ifstream f("adunare.in");
    ofstream g("adunare.out");

    f>>A;
    f>>B;

    g<<B+A;
    return 0;
}