#ABC145A. Circle
Circle
题目描述
Given is an integer .
How many times is the area of a circle of radius larger than the area of a circle of radius ?
It can be proved that the answer is always an integer under the constraints given.
给定整数 。
半径为 的圆的面积比半径为 的圆的面积大多少倍?
可以证明,在给定的限制条件下,答案总是整数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印半径为 的圆的面积除以半径为 的圆的面积的整数。
样例 #1
样例输入 #1
2
样例输出 #1
4
样例 #2
样例输入 #2
100
样例输出 #2
10000
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
半径为 的圆的面积是半径为 的圆的面积的 倍。
请注意,输出必须是整数,例如,"4.0 "将不被接受。