using System;public class Program{public static void Main(){int height_Klas=172;int height_Franklyn=166;int height_Doria=157;int height_Christoffer=185;bool längreÄnFranklyn=height_Klas > height_Franklyn;bool längreÄnDoria=height_Klas > height_Doria;bool längreÄnChristoffer=height_Klas > height_Christoffer;Console.WriteLine("Är Klas längre än Franklyn? Detta är:"+längreÄnFranklyn);Console.WriteLine("Är Klas längre än Doria? Detta är:"+längreÄnDoria);Console.WriteLine("Är Klas längre än Christoffer? Detta är:"+längreÄnChristoffer);}