#include <stdio.h>
#include <stdint.h>
typedef union {
uint32_t value;
uint8_t bytes[4];
} Register;
void print_bytes(uint32_t input) {
Register Register1;
Register1.value = input;
// Đã bỏ dấu & để in giá trị thực của từng byte
printf("%u %u %u %u\n", Register1.bytes[0], Register1.bytes[1], Register1.bytes[2], Register1.bytes[3]);
}
int main() {
uint32_t num;
if (scanf("%u", &num) == 1) {
print_bytes(num);
}
return 0;
}