#include using namespace std; int main(){ int n; cin >> n; int cal[n]; for(int i = 0; i < n;i++){ cin >> cal[i]; } // your code goes here return 0; }