summaryrefslogtreecommitdiff
path: root/7p10.cpp
blob: da25d3c056808523777e3faff83da82d274c34d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

/*
 *
 * 7.10
 *
 *
 */

int main () {

	// if (read(read(cin, data1), data2))
	// It first runs read(cin , data1), if it's successful then it returns cin
	// And then read(cin , data2) runs and we check if thats successful
	return 0;
}