When passing the input
A = 'hello'
B = 'by'
sum = A + '\\' + B
I get
'hello\\bye'
I WOULD like to get
'hello\bye'
What do I have to change?
When passing the input
A = 'hello'
B = 'by'
sum = A + '\\' + B
I get
'hello\\bye'
I WOULD like to get
'hello\bye'
What do I have to change?