Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- int a = int.Parse(Console.ReadLine());
- int b = int.Parse(Console.ReadLine());
- int h = int.Parse(Console.ReadLine());
- int S = ((a+b)*h)/2;
- Console.WriteLine("Wall 1 is :" + a);
- Console.WriteLine("Wall 2 is :" + b);
- Console.WriteLine("Height is :" + h);
- Console.WriteLine("Litseto e " + S);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment