#include #include using namespace std; int main() { string word; string other; word="sushi"; other=word.substr(3,2); cout << other << endl; }