#include<stdio.h>
int main()
{
int a[10] = {0}, temp = 0;
printf("input 10 numbers:\n");
for (int i = 1; i <= 10;i++)
{
scanf("%d", &a[i - 1]);
}
for (int i = 0; i <= 9;i++)
{
if(temp<a[i])
{
temp = a[i];
}
}
printf("The maximum is: %d", temp);
return 0;
}