Cod sursa(job #2878793)

Utilizator fluturandra2018@gmail.comAndra Flutur [email protected] Data 27 martie 2022 19:01:35
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
    long long int n, m;
    fin >> n >> m;
    fout << n+m;  
}