

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
地震のマグニチュードは、その地震のエネルギーの大きさを対数で表した値です。マグニチュードが 増える度にエネルギーは約 倍になることが知られています。
ここではマグニチュードが 増える度に地震のエネルギーがちょうど 倍になるとします。このとき、マグニチュード の地震のエネルギーの大きさはマグニチュード の地震のエネルギーの大きさの何倍ですか?
制約
- , は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えを整数で出力せよ。
入力例 1Copy
6 4
出力例 1Copy
1024
は より だけ大きいので、 マグニチュード の地震はマグニチュード の地震と比べて 倍のエネルギーを持っています。
入力例 2Copy
5 5
出力例 2Copy
1
マグニチュードが同じなのでエネルギーの大きさも同じです。
Score : points
Problem Statement
The magnitude of an earthquake is a logarithmic scale of the energy released by the earthquake. It is known that each time the magnitude increases by , the amount of energy gets multiplied by approximately .
Here, we assume that the amount of energy gets multiplied by exactly each time the magnitude increases by . In this case, how many times is the amount of energy of a magnitude earthquake as much as that of a magnitude earthquake?
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1Copy
6 4
Sample Output 1Copy
1024
is greater than , so a magnitude earthquake has times as much energy as a magnitude earthquake has.
Sample Input 2Copy
5 5
Sample Output 2Copy
1
Earthquakes with the same magnitude have the same amount of energy.