// Microscopy program
using System;
class Program
{
// -------------------------
// Subprograms
// -------------------------
// Calculate the magnification
static double magnification(int actual_size, int image_size)
{
}
// -------------------------
// Main program
// -------------------------
static void Main()
{
int actual_size =
int image_size =
double mag =
Console.WriteLine("The magnification is " + Convert.ToString(mag) + "X");
}
}