using System;
public class Program
{
public static void Main()
Random rnd = new Random();
int a = rnd.Next(10,99);
Console.WriteLine(a + "");
int b = rnd.Next(10,99);
Console.WriteLine(b + "");
int c =rnd.Next(10,99);
Console.WriteLine(c + "");
double T,K ;
T= a*a+b*b+c*c;
K= Math.Sqrt(T)/3;
Console.WriteLine(K+" סכום ממוצע שורש המספרים");
Console.WriteLine(T+" סכום הריבועים");
}