Cod sursa(job #2980513)
Utilizator | Data | 16 februarie 2023 16:20:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | Marime | 0.22 kb |
#include <bits/stdc++.h>
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;
}