#include <iostream>
using namespace std;

struct Index {
	int a, b;
};

Index getMax(int nr) {
	Index l;
	l.a = 1;
	l.b = 9;
	return l;
}


int main() {
	Index best = getMax(4);
	cout << best.a << " " << best.b;
	return 0;
}