fork download
  1. #include <iostream>
  2. int main() {
  3. int x = 2;
  4. x =+ 1;
  5. std::cout << x;
  6. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1