#include <cstdio>
using namespace std;

int main() {
	short int a,b,c;
	scanf("%hd %hd %hd", &a, &b, &c);
	printf("%hd %hd %hd", a, b, c);
	return 0;
}