fbinnzhivko

Bricks

Mar 16th, 2016
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4.     static void Main()
  5.     {
  6.         int x = int.Parse(Console.ReadLine());
  7.         int w = int.Parse(Console.ReadLine());
  8.         decimal m = int.Parse(Console.ReadLine());
  9.  
  10.         decimal kurs = w * m;
  11.         decimal total = x / (kurs);
  12.  
  13.         Console.WriteLine(Math.Ceiling(total));
  14.     }
  15. }
Add Comment
Please, Sign In to add comment