Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class _01_RectangleArea {
- public static void main(String[] args) {
- @SuppressWarnings("resource")
- Scanner str = new Scanner(System.in);
- int a = str.nextInt();
- int b = str.nextInt();
- System.out.println(a * b);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement