View difference between Paste ID: xCtPxN3Z and 7w2CVddy
SHOW: | | - or go back to the newest paste.
1
 import java.util.Scanner;
2
 
3
 public class SoapOpera1{ 
4
   public static void main(String[] args){
5
     Scanner sc = new Scanner(System.in);
6
     Date date1 = new Date(sc.nextInt());
7
     Date date2 = new Date(sc.nextInt());
8
     System.out.println(date1.compareDate(date2));
9
   }
10
 }