using System;
public class Program
{
public static void Main()
//Input
double a = 12.0; // we can use 'float' instead of double and does not need to put decimal value for example 12.0
double b= 5.0;
//Processing
string myString= "the answer is ";
double answer;
answer= a/b;
// int remainder =a%b;
//Output
Console.WriteLine(myString + answer);
}