#include <stdio.h>
int main() {
int a, b, c;
printf("Enter three numbers: ");
scanf("%d %d %d", &a, &b, &c);
if (a > b && a > c) {
printf("a is the maximum number");
} else if (b > c && b > a) {
printf("b is the maximum number");
} else {
printf("c is the maximum number");
}
return 0;
}