using System;
public class Program
{
public static void Main()
int alpha = 5;
float bravo = 3.5f;
bool charlie = true;
Console.WriteLine(alpha);
Console.WriteLine(alpha + bravo);
Console.WriteLine(charlie);
}
// ints are full numbers, no decimal points
// floats are numbers WITH decimal points
// bools have only 2 values, true or false
// your task is, to make a new bool, call it whatever you want and set it to false
// then make a 2 ints and 2 floats, set them as numbers you want, remember that float numbers have to have "f" at the end
// log the sum of all numbers and then log the bool that you just made
// you can delete my old code, its just an example