//#include <stdio.h>

//int main() {
   // int a;
   // printf("enter the value: ");
//scanf("%d",&a);
   // if (a > 100) {
   //     printf("a is greater");
   // } else {
   //     printf("a is smaller");
   // }

  //  return 0;
//}
#include <stdio.h>

int main() {
    int a;
    int b;

    printf("Enter the value of a: ");
    scanf("%d, &a);

    printf("Enter the value of b: ");
    scanf("%d", &b);

    if (a == b) {
        printf("a is equal to b");
    }
    else if (a < b) {
        printf("a is smaller than b");
    }
    else {
        printf("a is greater than b");
    }

    return 0;
}