00001 #include <stdiostream.h> 00002 00003 main() 00004 { 00005 double t, m, x[3], v[3]; 00006 00007 cin.read((unsigned char *)&t, 8); 00008 cin.read((unsigned char *)&m, 8); 00009 cin.read((unsigned char *)x, 24); 00010 cin.read((unsigned char *)v, 24); 00011 00012 cout.precision(18); 00013 cout << t << endl; 00014 cout << m << endl; 00015 cout << x[0] << " " << x[1] << " " << x[2] << endl; 00016 cout << v[0] << " " << v[1] << " " << v[2] << endl; 00017 }