DEV Community

Discussion on: Daily Challenge #119 - Adding Big Numbers

Collapse
 
natonathan profile image
Nathan Tamez • Edited

python

def add(a, b):
    return (f'{int(a)+int(b)}')