#include <bits/stdc++.h>
using namespace std;

double a[10];

int main() {
	memset(a,-1,sizeof(a));
	for(int i = 0; i < 10; ++i){
		cout << fixed << setprecision(15) << a[i] << "\n";
	}
	if(a[0]==a[1]) printf("Yes\n"); //I bet you expect this to happen
	else printf("No\n");
	return 0;
}