class ClaseB {
   int d; char ch; byte b; double f;
   ClaseB(int p1,char p2,byte p3,double p4) {
      d = p1; ch=p2; b = p3; f = p4;
   }

}