using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
/*1. Store in a variable a number (type float) representing a length value in kilometers. Convert it to miles and print the result. Then store a number of miles in a variable, convert it to kilometers and print the value.
Hints:
there are 1.61 km in 1 mile
you may even declare a constant to store this conversion rate
pay attention to the naming of your variables
2. Store 2 string values in two different variables, then print the length of each one, and also print True if the lengths are equal, or False otherwise.
Hint: variableName.Lenght C# functionallity might help you & one comparison between the values would be enough (you don't need to use the "if" clause as we didn't talk about it yet)
3. Create a list variable that can hold many Romanian city names. Add at least three names in this list. Print all of them.
4. Create an array which can store five prices from a store. Add those five prices one by one. Print the third number with a discount of 15%.
5. Create a stack with recipe names. Act like you cooked all of them and remove them one by one from the list after printing them.
6. Put all your friend's names in a queue in the order you would like to see them this week. Display the name of the second one.
7. Create a dictionary that holds a personal identification number (line a "CNP") as key and the address of the person having this identification number as value.
Create a second dictionary that holds an integer number as key and a list of strings as value. Print every element of every list.*/
}