#include int main(){ using std::cout; using std::endl; cout << "Here is 5: " << 5 << "\n"; cout << 8+5 << endl; return 0;} Here is 5: 513