• + 0 comments

    function main() { const PI=Math.PI // Print the area of the circle: let r=readLine() console.log(PI*r*r) // Print the perimeter of the circle: console.log(2*PI*r)