Write a program to display the Hello message on the  screen. 

******** In Algorithm ********

Algorithm Begin Write("hello") end Result ==> hello

******** In C ********

#include <stdio.h> int main() { printf("hello"); return 0 ; }

******** In C++ ********

#include <iostream> using namespace std; int main() { cout<<" hello " ; return 0 ; }

******** in Python ********

print("Bonjour")

******** In JAVA ********
class Main {
    public static void main(String[] args) {
        System.out.println("Hello");
    }
}

******** In C# ********

class Main {
using System;
public class Ex1 {
public static void Main(string[] args) { Console.WriteLine ("Bonjour");
}
}