using System; class Program { static void Main() { int D = 1000; double P = 8; int a = (int)(D*(1+P/100)); Console.WriteLine(a); } }