#include <bits/stdc++.h> using namespace std; int main() { for(int x=4;x<=12;x+=4) { cout<<x<<" "<<25-7*x/4<<" "<<75+3*x/4<<endl; } }