#include <iostream>
int main()
{
    std::cout << sizeof(0LL) << std::endl;
    std::cout << sizeof(0);
}