using System;
public class Program
{
public static void Main()
int price = 100;
int tax = 5;
int priceWithTax = price + tax;
Console.WriteLine(priceWithTax);
}