#include <iostream>
using namespace std;

int main() {

    // write your code here......
    cout << sizeof(char) << endl;
    cout << sizeof(int) << endl;
    cout << sizeof(long) << endl;
    cout << sizeof(double) << endl;


    return 0;
}