subtract method
- Time time
 
Implementation
void subtract(Time time) {
  int sec = getTotalSeconds();
  sec -= time.getTotalSeconds();
  apply(sec);
}
void subtract(Time time) {
  int sec = getTotalSeconds();
  sec -= time.getTotalSeconds();
  apply(sec);
}