int main(int c) { int x, y, z[5]; if(c) { x = c; } else { y = 4; } if(c) { y = x; } else { x = y; } z[0] = x; z[1] = y; return x/y; }