#include <iostream>
#include <cstring>
using namespace std;

int main()
{
    
    int l=strlen("123\0456\0");
    cout<<l<<endl;
    return 0;
}