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