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

main() {
    string s = "Привет";
    cout << "s[0]=" << s[0];
}