#include <iostream>
#include <stdlib.h>
using namespace std;
void printInt(int Integer) {
cout << "Integer is: " << Integer << endl; //hover over cout to get a tooltip: the compiler will stop after that
}
int main() {
int result=5; //create a breakpoint here, press f8 and hover over cout
printInt(result);
return 0;
}