#include <iostream>

int x = 42;
int main()
{
    std::cout << x << std::endl;
    
    // 100500 строк кода
    
    float x = 42.5;
    std::cout << x << std::endl;

    return EXIT_SUCCESS;
}