from decimal import * from math import pi r = Decimal(int(input())) ans = r ** 2 * Decimal(pi) print(int(ans))