sbool isValidInternationalPhoneNumber(S s) { InternationalPhoneValidator v = new(s); v.run(); if (v.error != null) print(v.error); ret v.valid; }