#include <iostream>
using namespace std;

struct data {
    float pos[3];
    float orient[3];
    float vel[3];
    double any_data_from_ass[1024];
};

int main()
{
   cout << sizeof(data) / 1024. / 1024. << " mb" << endl; 
   
   return 0;
}
