Step 2 of 5
Several values at once
One scanf can read several values. Whitespace (spaces, newlines) between them is skipped automatically for numbers.
int a, b;
scanf("%d %d", &a, &b);
Your turn: read a player's kills and deaths and print their difference.
Input: 18 11 prints +/-: 7