#include void main(void) { int eggList[3] = {0,0,0}; for(int i = 0 ; i < 3 ; i++){ scanf("%d",&eggList[i]); } for(int i = 0 ; i < 3 ; i++){ for(int j = i ; j < 3 ; j++){ if(eggList[i] > eggList[j]){ int num = eggList[i]; eggList[i] = eggList[j]; eggList[j] = num; } } } printf("%d",eggList[0]); }