#include using namespace std; int main() { int lia = 0; //read as: "copy 0 into lia" int tom = 2; //read as: "copy 2 into tom" int * kenny; //read as: "kenny is a pointer to an integer" cin>>lia; //read as: "read in a value from the keyboard and copy it into lia kenny = &lia; //read as: "kenny points to lia" cout<<"the value of lia is " <