Hello World (C#)

pyramid shadow on computer monitor with code editor

using System;
using System.Collections.Generic;
using System.IO;

class Solution {
    static void Main(String[] args) {
        String inputString;

        // basic input
        inputString = Console.ReadLine();

        // basic output
        Console.WriteLine("Hello, World.");
        Console.WriteLine(inputString);
    }
}

Be the first to comment

Leave a Reply

Your email address will not be published.


*