#include <stdio.h>

int main() {
    int num;
    float price;

    printf("Enter an integer: ");
    scanf("%d", &num);
    printf("Enter a float: ");
    scanf("%f", &price);

    printf("You entered integer: %d and float: %.2f\n", num, price);

    return 0;
}
