#include using namespace std; int n; int main() { freopen("block.in", "r", stdin); freopen("block.out", "w", stdout); cin >> n; cout << "1 " << n / 2 << " " << n / 2 << endl; return 0; }