Cod sursa(job #2908980)
Utilizator | Data | 7 iunie 2022 16:53:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | teme_upb | Marime | 0.22 kb |
#include <fstream>
using namespace std;
int main() {
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
int s=0;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}