using System;
namespace GaiaAssemblerTest
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello from C#!");
Console.WriteLine("Testing Gaia IR to MSIL conversion...");
int a = 10;
int b = 5;
int sum = a + b;
int difference = a - b;
int product = a * b;
int quotient = a / b;
Console.WriteLine($"a = {a}, b = {b}");
Console.WriteLine($"a + b = {sum}");
Console.WriteLine($"a - b = {difference}");
Console.WriteLine($"a * b = {product}");
Console.WriteLine($"a / b = {quotient}");
if (sum > 10)
{
Console.WriteLine("Sum is greater than 10");
}
else
{
Console.WriteLine("Sum is not greater than 10");
}
Console.WriteLine("Test completed successfully!");
}
}
}