#include /* This program will ask user for three numbers, store each in separate * variables x, y, and z respectively and print the message with their values. */ int main() { std::cout << "Enter three numbers: "; int x{}; int y{}; int z{}; std::cin >> x >> y >> z; std::cout << "You entered " << x << ", " << y << ", and " << z << ".\n"; return 0; }