Cod sursa(job #3300077)
Utilizator | Data | 12 iunie 2025 17:16:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.25 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
typedef long long ll;
int a, b;
int main()
{
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}