Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
31 lines (27 loc) · 984 Bytes

File metadata and controls

31 lines (27 loc) · 984 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************************************
* Copyright (c) 2017 ejpark.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU General Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl-3.0.html
*
* Contributors:
* eungjun11@gmail.com - initial API and implementation
******************************************************************************/
package algorithm.li;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/**
* @author ejpark
*
*/
public class A1001 {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] arr = br.readLine().split(" ");
int width = Integer.parseInt(arr[0]);
int height = Integer.parseInt(arr[1]);
int area = width * height;
System.out.println(area);
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.