#include <iostream>
int main() {
	std::cout << "Enter three numbers separated by spaces: ";
	
	int width { };
	int height { };
	int breadth { };
	
	std::cin >> width;
	std::cin >> height;
	std::cin >> breadth;
	
	std::cout << "The numbers entered by the User are: " << width << ", " << height << " and " << breadth;
	return 0;
}