using System;
public class Program
{
public static void Main()
double f = 0.05;
int y = 100;
int z = (int)(f * y);
Console.WriteLine(z);
}