Advertisement
dllbridge

Untitled

Aug 27th, 2019
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3.  
  4. int main()
  5.  {
  6.     int a1, b1;
  7.  
  8.     int a2, b2;
  9.  
  10.     scanf("%d%d",&a1,&b1);
  11.     printf("a1 = %d, b1 = %d\n",a1, b1);
  12.     scanf("%d%d",&a2,&b2);
  13.     printf("a2 = %d, b2 = %d",a2, b2);
  14.    
  15.     if("b1 > a2")
  16.     {
  17.        printf(" \nYes");
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement