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