Cod sursa(job #3284571)
Utilizator | Data | 11 martie 2025 21:47:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a,b;
fin >> a >> b;
fout << a + b << endl;
return 0;
}