#include <iostream>
using namespace std;

int main(){
    string str = "Deepa";
    
    // length
    int len = str.length();
    cout<<len<<endl;
    
    // find
    int find = str("ee");
    cout<<find;
}