#include <iostream>
using namespace std;

struct Foo {char a; int b; char c;};
struct Bar {char a; char b; int c;};


int main() {
	cout << sizeof(Foo) << endl;
	cout << sizeof(Bar) << endl;
}