Consider the following program segment. ifstream inFile; //Line 1 int x, y; //Line 2 ... //Line3 inFile >> x >> y; //4 Which of the following statements at Line 3 can be used to open the file progdata.dat and input data from this file into x and y at Line 4?