Skip to content

Instantly share code, notes, and snippets.

@alagalia
Created August 29, 2015 22:11
Show Gist options
  • Save alagalia/e53cf09b5fd6e0581572 to your computer and use it in GitHub Desktop.
Save alagalia/e53cf09b5fd6e0581572 to your computer and use it in GitHub Desktop.
package myPackage;
import java.util.Scanner;
public class Problem1RectangleArea {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt();
int b = scanner.nextInt();
System.out.println("Area:"+ a*b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment