#include <iostream>
#include <cstdint>

int main(void) {
    int16_t x = 0b0111'1111'1111'1111;
    uint16_t y = 0b0111'1111'1111'1111;
    int16_t ox = 0b1111'1111'1111'1111;
    uint16_t oy = 0b1111'1111'1111'1111;
    
    std::cout << x << "\n"
              << y << "\n"
              << ox << "\n"
              << oy << std::endl;
    return 0;
}

