Cod sursa(job #2740766)

Utilizator bobeicastefannBobeica Stefan Alexandru bobeicastefann Data 14 aprilie 2021 12:00:27
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;
int main() {
ifstream adu("adunare.in")
ofstream odu("adunare.out")
int a, b;
adu >> a >> b;
odu << a + b;
adu.close();
odu.close();
return 0;
}