It sounds like this person had a good hospice experience. No, there is nothing that can be done to take the sting from death, but there is an odd peace that comes with taking just a bit out of the mystery of death.
Subscribe to:
Post Comments (Atom)
1 comments:
GCD (int x, int y) {
if x | y
return x
else if y | x
return y
else if y > x
'y = nx + r
return GCD (x,r)
else
'x = ny + r
return GCD (y,r)
}
Post a Comment