#include using namespace std; namespace { typedef double real; typedef long long ll; template ostream& operator<<(ostream& os, const vector& vs) { if (vs.empty()) return os << "[]"; os << "[" << vs[0]; for (int i = 1; i < vs.size(); i++) os << " " << vs[i]; return os << "]"; } template istream& operator>>(istream& is, vector& vs) { for (auto it = vs.begin(); it != vs.end(); it++) is >> *it; return is; } int N; vector Z; void input() { cin >> N; Z.clear(); Z.resize(N); cin >> Z; } void solve() { cout << Z.back() << "/" << Z[0] << endl; } } int main() { input(); solve(); return 0; }