If integer yearInput is in the inclusive range: 1960 - 1969, output "The 60s". 1970 - 1979, output "The 70s". 1980 - 1989, output "The 80s". Otherwise, output "Outside the range of study". End each output with a newline. import java.util.Scanner; public class DecadesCategories { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); int yearInput; yearInput = scnr.nextInt(); /* Your code goes here */ } }