fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a=19;
  5. int b=20;
  6. printf("number:");
  7. scanf("%d",&a);
  8. printf("number:");
  9. scanf("%d",&b);
  10. if (a < b) {
  11. printf("greater value\n");
  12. }
  13. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
number:number:greater value