#include <iostream>
using namespace std;

int main() {
	int st1;
	int st2;
	int st3;
	
	cin>>st1;
	cin>>st2;
	cin>>st3;
	
	if((st1,st2)<st3) {
		cout<<"največje število je ";
		cout<<st3;
	}
	if((st1,st3)<st2) {
		cout<<"največje število je ";
		cout<<st2;
	}
	if((st3,st2)<st1) {
		cout<<"največje število je ";
		cout<<st1;
	}
	return 0;
}