Cod sursa(job #3342169)

Utilizator vlad.perpegel2010Vlad Perpegel vlad.perpegel2010 Data 23 februarie 2026 11:22:01
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <iostream>
#include <fstream>

using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main(){
    int a, b, d;
    in >> a >> b;
    d = a + b;
    out << d;
    return 0;
}