Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace RectangleArea
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a = int.Parse(Console.ReadLine());
- int b = int.Parse(Console.ReadLine());
- int area = a * b;
- Console.WriteLine(area);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement