#include <stdio.h>

/*
 * Program (faulty and inefficient) to find the max of three numbers
 * Terry Harvey CISC 105 section 98 TA George
 */

int main(){

    int a = 12, b = 12, c = 3;

    if (a > b){
	if (a > c)
	    printf("a is max: %d\n", a);
    }

    if (b > a){
	if (b > c)
	    printf("b is max: %d\n", b);
    }

    if (c > a){
	if (c > b)
	    printf("c is max: %d\n", c);
    }
    
	

    return 0;
}
