#include <iostream>

int main()
{
    std::cout << sizeof(char) << std::endl;
    std::cout << sizeof(void*) << std::endl;
    return 0;
}
