#include <iostream>

int main()
{
    int variable = 9; //Var to square root

    std::cout << (variable >> 2);
}