#include
#include
using namespace std;
int main() {
const int S = 6;
string items[S] = {"Меч", "Щит", "Броня",
"Шлем", "Латы", "Лук"},
names[S] = {"Экскалибур", "Артур",
"Хипстер", "Шрек",
"Кастет", "Леголас"};
for (int i = 0; i < S; i++)
cout << items[i] << " -> "
<< names[i] << endl;;<br> return 0;
}