#include using namespace std; int main() { //largest of 3 numbers // to illustrate nested if statements int a,b,c; cout<<"Enter 3 distinct numbers: "; cin >> a >> b >> c; if(a > b) { if(a > c) { cout< c) { cout<