Cod sursa(job #3127870)
Utilizator | Data | 7 mai 2023 21:53:49 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
int main(){
std::ifstream fin("adunare.in");
std::ofstream fout("adunare.out");
int A, B;
fin>>A>>B;
fout<<A+B;
fout.close();
return 0;
}