Hi!
i have to write a program that will ask user to enter an unsigned integer and any string and then my program has to output new string which is the old string transfered into ASCII + unsigned integer so for example if I enter 3 and "abc" output should be "def"
('a' shifted to 'd', 'b' to 'e', and 'c' to 'f')

thanks