#include <iostream>
#include <string>
using namespace std;

int main() {
	cout << sizeof(int) << endl;
	cout << sizeof(string) << endl;
	// your code goes here
	return 0;
}