using System;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");//Console.WriteLine Outputs Statements
string sub = Console.ReadLine();//Declare variables by their variable type followed by their name. Additionally, Console.ReadLine is used for user input.
//Subroutines
//Subroutines are blocks of code that perfrom a certain function when they are called. Advantages of Subroutines - More Efficient
//Procedures are block of code that performs a set task
//Function is a block of code that performs a set tsaks but returns a value
string name=("Amman");
//Variables outside subroutines cannot be used in subroutines
int num1=10;
int num2=5;
static void Multiply(num1,num2);
int c =a*b// Basic Number Addition
return c
}
//Substring - A string within a string. This is effective as it allows strings to merge together
RandInt(0,6);