fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int a=10;
  7. int b=9;
  8. printf("%d",!a);
  9. printf("%d",!b);
  10. return 0;
  11. }
Success #stdin #stdout 0s 5336KB
stdin
Standard input is empty
stdout
00