#include <iostream>
#include <vector>
using namespace std;

int main() {
	try{
		std::vector<int> arr;
		int val = arr[-1];
		std::cout << "successful";
	// your code goes here
	return 0;
	}catch(...)
	{
		std::cout << "exeption";
	}
}