Fito is doing Math homework. It turns out that the task he has to solve is really easy. However, he would like to write a program that computes the answer automatically. He knows that the teacher might ask the students to solve thousands of them. Since Fito is new to programming, he needs your help! Write a program that receives two positive integers $A$ and $B$. If $A$ is a divisor of $B$, the program should print $A + B$; otherwise, it should print $B − A$. This is Fito's math homework.