fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void get_output(int n) {
  5. if(n >= 9)
  6. cout << 1;
  7. else
  8. cout << 0;
  9. return ;
  10. }
  11.  
  12. int main() {
  13. int n;
  14. cin >> n;
  15. get_output(n);
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 15232KB
stdin
19
stdout
1