#include <bits/stdc++.h>
using namespace std;

int main() {
	vector<int>VI{ 20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841 };
	char c;
	map<char, long long int>MCL;
	while( cin >> c )MCL[c]++;
	int b, e;
	for( auto x : MCL ) {
		if( x.first != '.' ) {
			auto y = x.first - '0';
			if( VI[y]<x.second ) {
				e = y;
			} else if( VI[y]>x.second ) {
				b = y;
			}
		}
	}
	cout << e << " " << b << endl;
}