fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a,b;
  5. scanf("%d %d",&a,&b);
  6. if (a<b)
  7. printf("%d<%d\n",a,b);
  8. else if (a>b)
  9. printf("%d>%d\n",a,b);
  10. else
  11. printf("%d==%d\n",a,b);
  12. return 0;
  13. }
Success #stdin #stdout 0s 5288KB
stdin
5
stdout
5<32767