Advertisement
Guest User

Untitled

a guest
May 12th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. class Array
  7. {
  8. static void Main(string[] args)
  9. {
  10. int width = int.Parse(Console.ReadLine());
  11. int height = int.Parse(Console.ReadLine());
  12. int faceSum = width * height;
  13. Console.WriteLine(faceSum);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement