#include <stdio.h> int main() { for( int z=1; z<=12; ++z ) printf( "x=%d y=%d z=%d\n", 3*z, 50-4*z, z ); return 0; }