#include using namespace std; int main() { // Declare a variable to store the human age int humanAge {0}; // Ask the user for their age cout << "Enter your age in human years: "; cin >> humanAge; // Calculate age in dog years int dogYears = {humanAge * 7}; // Output the result cout << "If you were a dog, you'd be " << dogYears << " years old!" << endl; return EXIT_SUCCESS; }