// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. import java.time.OffsetDateTime; import java.time.temporal.ChronoField; class Main { public static int test(OffsetDateTime offsetDateTime) { return offsetDateTime.getNano(); } }