Cod sursa(job #2202346)

Utilizator dorufDoru Floare doruf Data 8 mai 2018 15:16:33
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream>

using namespace std;

ifstream I("adunare.in");
ofstream O("adunare.out");

int A, B, suma;

int main()
{
    I >> A >> B;
    suma = A+B;
    O<<suma;
    return 0;
}