using System;
public class Program
{
public static void Main()
//Multithreading Coding Exercise
//Problem Statement
//Write a C# program that demonstrates the use of multithreading to improve performance. The program should:
//Create three threads that perform different tasks concurrently:
//Thread 1: Prints numbers from 1 to 10 with a 500ms delay.
//Thread 2: Prints the square of numbers from 1 to 10 with a 700ms delay.
//Thread 3: Prints the cube of numbers from 1 to 10 with a 900ms delay.
//Use the Thread class to create and manage threads.
//Ensure all threads complete execution before the program exits.
// 1. Create threads
// 2. Start threads
// 3. Wait for all threads to complete
}