#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; if(n <= 2)cout<<"-1 -1 -1"; else cout<<"1 2 3"; return 0;}