fork download
#include <iostream>
#include <vector>
using namespace std;

int main() {
	char c = 'a';
	vector<string> answers = {"zielony", "czerwony", "niebieski"};
	for(const auto &answer: answers) {
		cout << endl << c << ". " << answer;
		c++;
	}
	return 0;
}
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
a. zielony
b. czerwony
c. niebieski