Your task is to:
Use only union access, no bit masking or shifts.
Example-1
Input: 305419896
Output: 120 86 52 18
(0x12345678 → bytes: 0x78 0x56 0x34 0x12)
Example-2
Input: 4294967295
Output: 255 255 255 255
Example-3
Input: 1
Output: 1 0 0 0
Input
305419896
Expected Output
120 86 52 18