B - AtCoder Condominium Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 200200

問題文

AtCoder マンションは 11 階から NN 階までの NN 階建てのマンションです。 各階には KK 室の部屋があり、11 号室から KK 号室まで番号が振られています。

ここで N,KN,K11 桁の整数であり、 ii 階の jj 号室の部屋番号は i0j で表されます。 例えば、11 階の 22 号室の部屋番号は 102102 です。

マンションの管理人である高橋君は各部屋番号を 33 桁の整数とみなし、 AtCoder マンションに存在するすべての部屋について足しあわせたらいくつになるのか興味を持ちました。 その値を求めてください。

制約

  • 1N,K91 \leq N,K \leq 9
  • N,KN,K は整数である。

入力

入力は以下の形式で標準入力から与えられる。

NN KK

出力

答えを出力せよ。


入力例 1Copy

Copy
1 2

出力例 1Copy

Copy
203

AtCoder マンションは 101101, 10210222 部屋からなります。 101+102=203101+102=203 です。


入力例 2Copy

Copy
3 3

出力例 2Copy

Copy
1818

Score : 200200 points

Problem Statement

A condominium AtCoder has NN floors, called the 11-st floor through the NN-th floor. Each floor has KK rooms, called the 11-st room through the KK-th room.

Here, both NN and KK are one-digit integers, and the jj-th room on the ii-th floor has the room number i0j. For example, the 22-nd room on the 11-st floor has the room number 102102.

Takahashi, the manager, got interested in the sum of the room numbers of all rooms in the condominium, where each room number is seen as a three-digit integer. Find this sum.

Constraints

  • 1N,K91 \leq N,K \leq 9
  • NN and KK are integers.

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print the answer.


Sample Input 1Copy

Copy
1 2

Sample Output 1Copy

Copy
203

The condominium has two rooms 101101 and 102102. We have 101+102=203101+102=203.


Sample Input 2Copy

Copy
3 3

Sample Output 2Copy

Copy
1818


2025-04-03 (Thu)
08:42:27 +00:00