First create dataToPass  class variable/property in viewControllerB and C with appropriate dataType and follow the steps below: 
SOLUTION 1:
//IN ViewControllerA write following function before creating that you need segues from A to B and A to C with identifiers for each.
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) { 
    if segue.identifier == "identifierForB" {
        let instanceOfViewControllerB = segue.destinationViewController as! ViewControllerB
        instanceOfViewControllerB.dataToPass = dataOne
    } else if segue.identifier == "identifierForC" {
        let instanceOfViewControllerC = segue.destinationViewController as! ViewControllerC
        instanceOfViewControllerB.dataToPass = nextData
    }
}
SOLUTION 2:
If you go to ViewControllerB or C by code: do like this: (keep like this code in action of OK button pressed)
//First you need to give storyboard id to view controller associated with ViewControllerB and C then in action function of OK button
  let storyBoard = UIStoryboard(name: "Main", bundle: nil)
  if (showViewControllerB == true) {
     let instanceOfViewControllerB = storyBoard.instantiateViewControllerWithIdentifier("ViewControllerBIdentifier") as! ViewControllerB
     instanceOfViewControllerB.dataToPass = dataOne
     self.presentViewController(instanceOfViewControllerB, animated: true, completion: nil)
  } else if showViewControllerC == true {
     let instanceOfViewControllerC = storyBoard.instantiateViewControllerWithIdentifier("ViewControllerCIdentifier") as! ViewControllerC
     instanceOfViewControllerC.dataToPass = dataOne
     self.presentViewController(instanceOfViewControllerC, animated: true, completion: nil)
  }
SOLUTION 3
You create two properties in class A:
var vcB: B!
var vcC: C!
keep if just below the definition of class A
now on OK button clicked:
 let storyBoard = UIStoryboard(name: "Main", bundle: nil)
 vcB = storyBoard.instantiateViewControllerWithIdentifier("ViewControllerBIdentifier") as! ViewControllerB
 vcB.dataToPass = dataOne
 vcC = storyBoard.instantiateViewControllerWithIdentifier("ViewControllerCIdentifier") as! ViewControllerC
 vcC.dataToPass = dataOne
Be sure to present vcC when you want to open C view controller in screen and be sure to present vcB when you want to open B view controller.
when you click button or from trigger to show view of C: just put following code in function/Action:
self.presentViewController(vcC, animated: true, completion: nil)
when you click button or from trigger to show view of B: just put following code in function/Action:
        self.presentViewController(vcB, animated: true, completion: nil)
HOPE THIS IS WHAT YOU WANT, Is It?