import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = (b % 10) * a;
int d = (b % 100)/10 * a;
int e = (b/100) * a;
System.out.println(c);
System.out.println(d);
System.out.println(e);
System.out.println(a * b);
sc.close();
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 9498번 (0) | 2022.12.24 |
---|---|
[백준] 1330번 (0) | 2022.12.24 |
[백준] 25083번 (0) | 2022.12.24 |
[백준] 10172번 (0) | 2022.12.24 |
[백준] 10171번 (0) | 2022.12.23 |