#include <stdio.h>
#include <stdint.h>
typedef union {
float f;
uint8_t bytes[4];
} FloatPacket;
int main() {
float input;
scanf("%f", &input);
FloatPacket tmp;
tmp.f = input;
printf("Byte 0: %hhu\nByte 1: %hhu\nByte 2: %hhu\nByte 3: %hhu",
tmp.bytes[0], tmp.bytes[1], tmp.bytes[2], tmp.bytes[3]);
return 0;
}