Skip to content

Latest commit

 

History

History

Text Wrap

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Text Wrap

You are given a string S and width w.
Your task is to wrap the string into a paragraph of width w.

Input Format
The first line contains a string, S.
The second line contains the width, w.

Output Format
Print the text wrapped paragraph.

Sample Input
ABCDEFGHIJKLIMNOQRSTUVWXYZ
4

Sample Output
ABCD
EFGH
IJKL
IMNO
QRST
UVWX
YZ