You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Logic :- we have divided 2 numbers a and b(a%b) and if we got a reminder after dividing them we will subtract it from a to find the required solution.
// But their is a issue if the reminder is 0 it will just show the value of a which will be wrong so we will use if else statement to avoid this error.