#include 
                int main()
                {
                  int length,width,height;
                  length=25;
                  width=60;
                  if(length==50)
                    height=4;
                  else
                    height=8;
                  printf("%d %d %d",length,width,height);

                  return 0;
                }