Cod sursa(job #3302103)

Utilizator thommy07Gilca Thomas Octavian thommy07 Data 3 iulie 2025 12:59:53
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
int main()
{
int a,b;
fin>>a;
fin>>b;
cout<<a+b;
}