fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.  
  5. string start;
  6. while(cin>> start){
  7. string result = start.substr(2);
  8. cout << result << endl;
  9. }
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5324KB
stdin
:<PALLET_5NC99Nu_Z
:<PALLET_5NC99Nu_Z
:<PALLET_5NC99Nu_Z
stdout
PALLET_5NC99Nu_Z
PALLET_5NC99Nu_Z
PALLET_5NC99Nu_Z