PROGRAMMING:Application of sizeof operator
Please program to output how many bytes sizeof (long double), sizeof (3.14l) and sizeof (314ll) occupy in memory.
Use the operator sizeof to calculate the above values.
###Output format:
There is a space between every two values. Don't output extra characters.
###Input example:
```in
```
###Output example:
```out
16 16 8
```
answer:If there is no answer, please comment
Use the operator sizeof to calculate the above values.
###Output format:
There is a space between every two values. Don't output extra characters.
###Input example:
```in
```
###Output example:
```out
16 16 8
```
answer:If there is no answer, please comment