Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Period;
import java.time.Year;

public class Main {
    public static void main(String[] args) {
        Year y = Year.of(2014);
        Year l = y.plus(Period.ofYears(12));
        System.out.println(l);

    }
}