#include <stdio.h>

int main(void) {
	float z;
	float x;
	float y;
	
	z=x;
	x=y;
	y=z;
	printf(%f=%f/n,z,x);
	
	return 0;
}
