using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp9
{
class Program
static void Main(string[] args)
Console.Write("r = ");
double r = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("S = {0}", 4 * Math.PI * Math.Pow(r,2));
Console.WriteLine("V = {0}", (4/3)*Math.PI*Math.Pow(r,3));
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp9
{
class Program
{
static void Main(string[] args)
{
Console.Write("r = ");
double r = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("S = {0}", 4 * Math.PI * Math.Pow(r,2));
Console.WriteLine("V = {0}", (4/3)*Math.PI*Math.Pow(r,3));
}
}
}