Given two dates, return the difference between the two.
UnsolvedThe program must take input as two comma-separated dates in the form YYYY-MM-DD, and print the number of days that has passed since the second date as if today was the first date (if the second date would be in the future, output a negative number). Assume both dates are in the Gregorian calendar.
value1
A comma separated separated dates in the form YYYY-MM-DD.
Sample Input 1
value1: 2015-12-03,2013-12-03 output: 730