#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
int a[1010];
int n;
cin >> n;
int pos = 0;
for (int i = 0; i < n; i++)
{
cin >> a[i];
}
for (int i = 0; i < n; i++)
{
if (a[i] < a[pos]) pos = i;
}
printf("Minimum value: %d\nPosition: %d", a[pos], pos);
return 0;
}