#include using namespace std; #define int long long #define rep(i,l,r) for(int i=(int)(l);i<(int)(r);i++) #define all(x) (x).begin(),(x).end() #define pb push_back templatebool chmax(T &a,T b){if(abool chmin(T &a,T b){if(a>b){a=b;return 1;}return 0;} typedef pair pii; typedef vector vi; typedef vector vvi; const int inf = 1LL<<60; const int mod = 1e9 + 7; const double eps = 1e-9; /*{ }*/ int n, a[12]; int ans[3]; bool dfs(int x) { rep(i, 0, n) rep(j, i+1, n) rep(k, j+1, n){ if(x & 1< 0){ if(!dfs(x | 1<> n; rep(i, 0, n) cin >> a[i]; if(dfs(0)) cout << ans[0] << " " << ans[1] << " " << ans[2] << endl; else cout << -1 << endl; return 0; }