It wouldn't make any difference if you have given that way, it would take 20 seconds.
Implicit wait start working when you call findElement
function, but explicit wait will work by repeatedly calling findElement
until the element is found. So If you give implicit wait 60 seconds and Explicit wait 70 seconds, then it would wait for 120 seconds because when the first time explicit wait calls the findElement, implicit wait will hold it for 60 seconds and then it will release the control, but Explicit wait still have 10 seconds, so at 61 seconds, it will once again call findElement
function, now since Implicit wait is 60 seconds, it will wait for another 60 seconds, so it takes 120 seconds. Now you can see eventhough you set Implicit wait for 60 seconds and Explicit wait for 70 seconds, it would mess up things and ultimately wait for 120 seconds, so never combine both.
And also Implicit wait is in the driver, Explicit wait is in the local language binding.