//Declaration of variables
string firstName = ("Bob");
int number = (3);
decimal otherNumber = (34.4M);
//Console commands
Console.Write("Hello, ");
Console.Write(firstName + "!");
Console.Write("You have" + number + "messages in your inbox");
Console.Write("The temperature is " + otherNumber + "celsius.");
//Declaration of variables
string firstName = ("Bob");
int number = (3);
decimal otherNumber = (34.4M);
//Console commands
Console.Write("Hello, ");
Console.Write(firstName + "!");
Console.Write("You have" + number + "messages in your inbox");
Console.Write("The temperature is " + otherNumber + "celsius.");