#include <iostream>
using namespace std;

const string str1 = "abcd";
const string str2 = "фбвг";


int main() 
{
 	cout << str1 <<  " - " << str1.size() << " - " << str1[2] << endl ;  
 	cout << str2 <<  " - " << str2.size() << endl ;  
 	
 
	return 0;
}

