#include <iostream>
using namespace std;

int main(){
    string str = "Deepa";
    
    // length
    int len = str.length();
    cout<<len<<endl;
    
    // find
    int txt = str.find("e");
    cout<<txt;
    
    // substring
    string sub = str.substring(1,2);
    cout<<sub;
}