using System;
public class Program
{
public static void Main(string[] args)
{
int x = 981;
Console.WriteLine(Convert.ToString(x, 2).PadLeft(16, '0'));
x = ~x;
Console.WriteLine(Convert.ToString(x, 2).PadLeft(16, '0'));
}
}
/*
run:
0000001111010101
11111111111111111111110000101010
*/