Guest User

Untitled

a guest
Jan 20th, 2017
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. using System;
  2. class Program
  3. {
  4. static void Main(string[] args)
  5. {
  6. var a = double.Parse(Console.ReadLine());
  7. var b = double.Parse(Console.ReadLine());
  8. a = Math.Abs(a - double.Parse(Console.ReadLine()));
  9. b = Math.Abs(b - double.Parse(Console.ReadLine()));
  10.  
  11. Console.WriteLine("{0}\n{1}", a * b, 2 * (a + b));
  12. }
  13. }
Add Comment
Please, Sign In to add comment