fork(7) download
  1. #include <cstdio>
  2. int main()
  3. {
  4. int n,m,k;
  5. scanf("%d%d%d",&n,&m,&k);
  6. if(k>n || k>m)
  7. {
  8. printf ("0");
  9. return 0 ;
  10. }
  11. printf("1");
  12. return 0;
  13. }
Success #stdin #stdout 0s 2744KB
stdin
4 40000 60000
stdout
Standard output is empty