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