Replace ‘published on date’ with ‘modified on date’ on Posts

You just need to compare values of get_the_post_time() and get_the_modified_time().

if ( get_the_post_time() == get_the_modified_time() ) {
    // Published on...
} else {
    // Modified on...
}