fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // i see where it comes it happens its over
  6. int x;
  7. cin>>x;
  8. cout<<x/10<<" "<<x%10;
  9. return 0;
  10. }
Success #stdin #stdout 0s 5308KB
stdin
23
stdout
2 3