You're probably looking for cout << "Output"; where "Output" can be anything you want...
code snippet:
1 2 3 4 5 6 7 8 9 10
#include <iostream>
int main() {
usingnamespace std; //you can't use cout without this.. or you could use std::cout
int a=5;
cout << "a is" << a;
return 0;
}