Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace New_Years_Eve_Party
- {
- class Program
- {
- static void Main(string[] args)
- {
- int guests = int.Parse(Console.ReadLine());
- int budget = int.Parse(Console.ReadLine());
- int kuvert = 20;
- if(guests * kuvert < budget)
- {
- int ostatuk = budget - (guests * kuvert);
- double fireworks = ostatuk * 0.40;
- double donation = ostatuk * 0.60;
- Console.WriteLine("Yes! "+ fireworks +" lv are for fireworks and "+ donation +" lv are for donation.");
- }
- else
- {
- Console.WriteLine("They won't have enough money to pay the covert. They will need " + ((guests * kuvert) - budget) + " lv more.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement