I am learning Selenium Webdriver using Java. As a learning example, I tried to open MakeMyTrip, access International Flights page and click on One Way radio but
Try below xpath.
//*[@id="one_way_button1"]/span/input
It should work.
driver.findElement(By.xpath(//*[@id=\"one_way_button1\"]/span/input)).click();