fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a,b,x;
  5. printf("enter the values of a and b\n");
  6. scanf("%d%d",&a,&b);
  7. x=a>b?a:b;
  8. return 0;
  9. }
Success #stdin #stdout 0s 5284KB
stdin
45
stdout
enter the values of a and b