#include <iostream>
using namespace std;

int main(){
   string editor = "Luiz";
   int i = 0;
   for (auto l : editor) cout << "Letra: " << l << " Índice: " << i++ << endl;
}

//https://pt.stackoverflow.com/q/513673/101