You are given a word and want to split it into even parts based on a number that is provided, each half being the size of the number.
Write a program that takes in a string, and a number as input. Split the string into even parts sized by the number, and output the parts separated by hyphens. The last part of the output will be any leftover, as the input string might not split into the provided parts evenly.
Two inputs: a string and an integer.
A string, representing the hyphen-separated parts.
hello
2
he-ll-o
We split the word "hello" into 2-sized parts. The last letter o was leftover, resulting in the output he-ll-o.