Project 0

Convert a simple console-based Boolean logic program (written in C# with MVVM structure) into a web-based version — and upload it online.
The C# program performs three bitwise operations (AND, OR, XOR) on two integer inputs (x, y) and displays the result. Structure: Model: Does the bitwise math (and = x & y, etc.). ViewModel: Connects the logic. View: Outputs the result to the console.