using System;
public class Program
{
public static void Main()
int Totalcost;
double Cost;
double Cost5;
Totalcost=int.Parse(Console.ReadLine());
Cost= Totalcost*0.5;
Cost5= Cost*0.2;
Console.WriteLine("The mony you paid in cash is :{0}",Cost);
Console.WriteLine("The mony you will paid as a installment is :{0}",Cost5);
}