#include using namespace std; /* Show how cout prints variables with different types. */ int main() { int i; string s; i = 2; s = " times"; cout << "Love me " << i << s << ", baby\n"; return 0; }