Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace UsbToBgn
- {
- class Program
- {
- static void Main()
- {
- double usd = double.Parse(Console.ReadLine());
- double bgn = usd * 1.79549;
- Console.WriteLine($"{bgn:F2} lv.");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement