Advertisement
Guest User

Untitled

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