Cod sursa(job #2980504)
Utilizator | Data | 16 februarie 2023 16:16:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | Marime | 0.21 kb |
#include <iostream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long c;
int main()
{
long long a,b;
fin>>a>>b;
c = a+b;
fout<<c;
return 0;
}