#include main(){ int a,b,c; scanf("%d%d%d", &a, &b, &c); int i; for(i=200;i>=150;i--){ if(i==a||i==b||i==c){ printf("%d\n", i); } } return 0; }