#include using namespace std; int main() { int x, y, z, min; cout << "Enter 3 numbers:" << endl; cin >> x >> y >> z; if ((x <= y) && (x <= z)) { min = x; } else { if ((y <= x) && (y <= z)) { min = y; } else { min = z; } } cout << "The minimum value is: " << min << endl; return (0); }