Nice verb there, in the title.
Write a program that given an input string, will "elasticize" this string and output the result. Elasticizing a string is done as follows:
The first character is shown once. The second character is shown twice. The third character is shown thrice, and so on.
You can expect to receive only printable ASCII characters. Based off the following link, these characters have decimal values 32-126.
Examples:
Why: Whhyyy
SKype: SKKyyyppppeeeee
LobbY: LoobbbbbbbYYYYY
(Note how there are 7 b's since the first b is shown 3 times and the second b is shown 4 times, making a total of 7 b's).
A and B: A aaannnnddddd BBBBBBB
Shortest bytes wins :)