Arithmetic Operators

  • + 1 comment

    check out my solution

    if __name__ == '__main__':
        a = int(input())
        b = int(input())
        
        if (1<=a<=10**10) and (1<=b<=10**10):
            print(a+b)
            print(a-b)
            print(a*b)