using System;
public class Program
{
public static void Main()
//number 3//
//Console.WriteLine("how much money do you get in a hour");
//float salaryPerHour= int.Parse(Console.ReadLine());//how much money do you get in a hour
//Console.WriteLine("how many hours did you work");
//float workTime= float.Parse(Console.ReadLine());//how many hours did you work
//Console.WriteLine("how many hours did you miss");
//float missedHours= float.Parse(Console.ReadLine());//how many hours you missed at work
//float salary;
//if(missedHours > 3.5)//if you missed less then 3.5 hours then you get the reward
//{
// salary= (workTime * salaryPerHour) + (workTime * salaryPerHour)/10;//your normal salary and the reward
//}
//else// if you missed more then 3.5 hours of work then your salary remains the same
// salary= (workTime * salaryPerHour);//your normal salary
//Console.WriteLine("your salary is" + " " + salary);//a mesage of how much money you got from work
//number4//
//Console.WriteLine("enter a number");
//int a= int.Parse(Console.ReadLine());
//int b= int.Parse(Console.ReadLine());
//int c= int.Parse(Console.ReadLine());
//int smallestNumber= Math.Min(a, b, c);
//Console.WriteLine("the smallest number is" + " " + smallestNumber);
//number5//
//int num1= int.Parse(Console.ReadLine());
//Console.WriteLine("enter another number");
//int num2= int.Parse(Console.ReadLine());
//if(num1 < 10)
// if(num2>9 && num2<100)
// {
// Console.WriteLine("yes");
// }
//else
// Console.WriteLine("no");
//number6//
//int firstNum= int.Parse(Console.ReadLine());
//int secondNum= int.Parse(Console.ReadLine());
//int thirdNum= int.Parse(Console.ReadLine());
//double firstPow= Math.Pow(firstNum, 2);
//double secondPow= Math.Pow(secondNum, 2);
//double thirdPow= Math.Pow(thirdNum, 2);
//if(firstPow + secondPow == thirdPow)
// Console.WriteLine("the numbers are a pitagor");
//else if(secondPow + thirdPow == firstPow)
//else if(firstPow + thirdPow == secondPow)
// Console.WriteLine("the numbers are not a pitagor");
//number7//
//Console.WriteLine("enter your score on the first test");
//int firstTest= int.Parse(Console.ReadLine());
//Console.WriteLine("enter your score on the second test");
//int secondTest= int.Parse(Console.ReadLine());
//Console.WriteLine("enter your score on the third test");
//int thirdTest= int.Parse(Console.ReadLine());
//double average= (firstTest + secondTest + thirdTest) / 3;
//if(average >= 90)
// Console.WriteLine("enter your score on the first interview");
// int firstInterview= int.Parse(Console.ReadLine());
// Console.WriteLine("enter your scor on the second interview");
// int secondInterview= int.Parse(Console.ReadLine());
// if(firstInterview > 90 && secondInterview > 90)
// Console.WriteLine("you pased");
// else
// Console.WriteLine("you pased onely the first stage");
// Console.WriteLine("you didnt pass at all");
//number8//
}