#include #include #include using namespace std; int main() { setlocale(LC_ALL, "Rus"); string s = "Программа"; const int len = s.length(); for (int i = 1; i= 0; i -= 2) { cout << s[i]; } cout << endl; system("pause"); return 0; }