/*
Please implement in C# the function that increments a string based on the rules below.
It should take the string of unknown length and increment the numeric ending of that string by 1.
If numeric ending is overflown it must be reset. Don’t use regular expressions.
Function signature:
string Increment(string referenceNumber)
Examples:
000002 -> 000003
999999 -> 000000
GL-321 -> GL-322
GL-999 -> GL-000
DRI000EDERS0RE -> DRI000EDERS0RE
DRI000EDERS0RE99999 -> DRI000EDERS0RE00000
*/
using System;
using System.Collections;
public class Program
{
public static void Main()
Console.WriteLine("Hello World");
}