#include #include using namespace std; int main() { int a,b; cin >> a; for(int i = 1; i < a; i++) { cin >> b; } cin >> b; cout << "At the position " << a << " there is a(n) " << b << "." << endl; }