# test round() with large integer values and second arg# rounding integers is an optional feature so test for ittry:round(1,-1)exceptNotImplementedError:print('SKIP')raiseSystemExiti=2**70tests=[(i,0),(i,-1),(i,-10),(i,1),(-i,0),(-i,-1),(-i,-10),(-i,1),]fortintests:print(round(*t))