#include <stdio.h>

int main() {
	int a, b;
	float x, y;
	char c1, c2;

	printf("Enter two integers: ");		
	scanf_s("%d %d", &a, &b);

	printf("Enter two floating-point numbers: ");
	scanf_s("%f %f", &x, &y);

	printf("Enter two characters: ");
	scanf_s(" %c %c", &c1, &c2);

	printf("You entered:\n");
	printf("Integers: %d, %d\n", a, b);
	printf("Floating-point numbers: %.2f, %.2f\n", x, y);
	printf("Characters: %c, %c\n", c1, c2);

	return 0;
}

Ciallo~(∠・▽< )⌒☆