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

#define f(x, y, z) g(x), g(y), g(z)

#define g(x) x
vector<int> bagor = {f(1
#undef g
#define g(x) x+10
, 2
#undef g
#define g(x) x+100
, 3)};
#undef g

int main() {
	for (auto kakoi : bagor) {
        cout << kakoi << endl;
    }
    cout << endl;
	return 0;
}