fork(1) download
  1. #include <iostream>
  2. #include <vector>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6.  
  7.  
  8. int main()
  9. {
  10. ios_base::sync_with_stdio(0);
  11. cin.tie(0);
  12. cout.tie(0);
  13.  
  14. cout << 1 % 4;
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5344KB
stdin
Standard input is empty
stdout
1