Cod sursa(job #2912878)

Utilizator 1Urskybie4275Lopatnicu Albertina 1Urskybie4275 Data 11 iulie 2022 14:37:28
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include<iostream>
#include <fstream> 
using namespace std;

int main() {
    ifstream fin("adunare.in"); 
    ofstream fout("adunare.out");  
    int x, y;
    fin >> x; 
    fin >> y;

    fout << x + y;
    fout.close(); 
}