#include <stdio.h>

int main(void) {
	// your code goes here
	int A;
	int B; 
	int C; 
	A=10;
	B=4; 
	C=A;
	A=B;
	B=C;
	printf("%d %d", B,A);
	return 0;
}
