This documentation is automatically generated by online-judge-tools/verification-helper
import cp_library.alg.dp.__header__
def sort2(a, b):
return (a,b) if a < b else (b,a)
'''
╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸
https://kobejean.github.io/cp-library
'''
def sort2(a, b):
return (a,b) if a < b else (b,a)