fork download
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6. long X = scanner.nextLong();
  7. long Y = X%365;
  8. long A = X/365;
  9. long Z =Y%30;
  10. long B = Y/30;
  11.  
  12. System.out.println(A+ " years");
  13. System.out.println(B+ " months");
  14. System.out.println(Z+ " days");
  15.  
  16. scanner.close();
  17. }
  18. }
Success #stdin #stdout 0.2s 56932KB
stdin
764
stdout
2 years
1 months
4 days