Cod sursa(job #2914493)
Utilizator | Data | 20 iulie 2022 04:29:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a, b;
fin>>a;
fin>>b;
long c=a+b;
fout<<c;
return 0;
}