//While loop, for the largest of two numbers.
#include <stdio.h>
int main(){
int a, b;
printf("Enter Values a and b:
");
scanf("%d %d", &a, &b);
while (a < b){
printf("%d is greater than %d
", b, a);
printf("Enter Values a and b:
");
scanf("%d %d", &a, &b);
}
printf("%d is greater than %d
", a, b);
}