#include <stdio.h>
void main()
{
printf("Hello, World! ");
printf("Here are integers: %5d %8d ", 10, 99);
printf("Here are floats: %4.2f %8.5f ", 3.1415, 0.001);
printf("Here are characters: %c %c ", 'A', '@');
}