Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace _14.Uchebna_Zala
- {
- class Program
- {
- static void Main(string[] args)
- {
- double h = double.Parse(Console.ReadLine());
- double w = double.Parse(Console.ReadLine());
- double workplace_height = 1.20;
- double workplace_widht = 0.70;
- double solution = Math.Floor (h / workplace_height);
- double solution2 = Math.Floor (w / workplace_widht -1);
- Console.WriteLine("{0}", (solution*solution2)-3);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement