if (a <= b && a <= c) cout << a << " is the smallest"; else if (b <= a && b <= c) cout << b << " is the smallest"; else cout << c << " is the smallest";