#include <iostream>
using namespace std;
struct Node
{
 int chrN;
 long int pos;
 int nbp;
 string Ref;
 string Alt;
};
int main() {
	// your code goes here
	cout << sizeof(Node) << endl;
	return 0;
}