cp-library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub kobejean/cp-library

:heavy_check_mark: cp_library/io/read_int_fn.py

Verified with

Code

import cp_library.io.__header__

def read(shift=0, base=10):
    return [int(s, base) + shift for s in input().split()]
'''
╺━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╸
             https://kobejean.github.io/cp-library               
'''

def read(shift=0, base=10):
    return [int(s, base) + shift for s in input().split()]
Back to top page