#include<iostream>
using namespace std;
int main()
{
int n =(1 2 3 4 5);

cout << "print the reversed array";

cout << "print invalid input ";
cin >> "n is negative ";

return 0;

}