Cod sursa(job #2576855)
Utilizator | Data | 7 martie 2020 00:26:39 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
std::ifstream in ("adunare.in"); std::ofstream out ("adunare.out");
int main(){
int a,b;
std::ios::sync_with_stdio(false);
in>>a>>b;
out<<a+b;
}