#include int main() { int n1, n2, n3; cout << "Enter three integers: "; cin >> n1 >> n2 >> n3; int max = n1; if ( n2 > max ) max = n2; if ( n3 > max ) max = n3; cout << "The Maximum is " << max << endl; return 0; }