Created two instances of different classes. On which way i can add them
class Dollar():
def __init__(self, value):
self.value = value
class Euro():
def __init__(self, value):
self.value = value
d = Dollar(80)
s = Euro(50)
print(d + s)