using System; public class Test { public static void Main() { int n = 100; n = (int) (n - (n * 0.25)); Console.WriteLine(n); } }