using System;
public class Program
{
public static void Main()
//{
//#1
//bool isTargetValue = false;
//double number;
//Console.WriteLine("Enter a number:");
//number = Convert.ToDouble(Console.ReadLine());
//while (!isTargetValue)
//if (number > 0.5)
//Console.WriteLine(number);
//number = number/2;
//}
//else
//isTargetValue = true;
//#2
//for(int i = 1;i < 17;){
//i = i-2;
//Console.WriteLine(i);
//if(i == -13){
//i = 17;
//#3
//int month;
//month = int.Parse(Console.ReadLine());
//if (month <= 3)
//Console.WriteLine("First Quarter");
//else if (month <=6 && month >3)
//Console.WriteLine("Second Quarter");
//else if (month <=9 && month >6)
//Console.WriteLine("Third Quarter");
//else if (month <=12 && month >9)
//Console.WriteLine("Fourth Quarter");
//#4
//for (int row = 1; row < 6; row++){
//Console.WriteLine();
//for (int col = 1; col < 7; col++){
//Console.Write(row*col + " ");
//#5
//Console.WriteLine("Enter your school:");
//string school = Console.ReadLine();
//Console.WriteLine("You go to " + school);
//#6
//bool meetsRequirements = false;
//#7
//double incomeTax = 0.0;
//#8
//string sentence = "\"I can see the fortress,\" said John)";
//#9
//string computerBrand = Compaq;
}