#include <stdio.h> /*Read Second Int ; Reject rest*/
int main(void) {
int amount;
do {
printf("Enter <integer> <integer> <float>: ");
scanf("%*d%d%*[^\n]", &amount);
printf("Second Integer: %d\n",amount);
} while (amount >=0);
printf("\nThank You\n");
return 0;
} /* main */