Advertisement
desislava_topuzakova

03. Rectangle Area

Nov 12th, 2023
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. int a = int.Parse(Console.ReadLine());
  2. int b = int.Parse(Console.ReadLine());
  3.  
  4. int area = a * b;
  5.  
  6. Console.WriteLine(area);
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement