7 lines
160 B
Python
7 lines
160 B
Python
from functions import check_insurance
|
|
|
|
if __name__ == "__main__":
|
|
rc = "7309208104"
|
|
res = check_insurance(rc)
|
|
print("=== RESULT ===")
|
|
print(res) |