1 #include <stdio.h>
2 
3 int
main()4 main() {
5 	printf("%ld %ld %Lf %d\n", 123L, 456L, 789.9L, 2);
6 	return 0;
7 }
8 
9