fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int a = 3, b = 6;
  5. int wynik;
  6. wynik = b / a;
  7. std::cout << wynik;
  8. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
2