12
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int x =10;
8
double y = 20.00;
9
bool z =true;
10
Console.WriteLine($"{y} divided by {x} = 2 is {z}");
11
}
12
}
Cached Result