Cod sursa(job #2980203)
Utilizator | Data | 16 februarie 2023 11:37:16 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long long a,b,s;
int main()
{
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}