// lab 1 practice 2 // write a cout that includes the variables below // Sample output: "Totoro is 5400 years old" #include using namespace std; int main() { const string NAME = "Totoro"; int number = 5400; // write cout here return 0; }