#include<stdio.h> int main() { int i,max,num; for(i=1;i<=10;i++) { scanf("%d",&num); if(i==1||max>num) max = num ; } printf("%d\n",max); return 0; }