or input 4 8 13 -3, finalNum is calculated as follows:
4 is divisible by 4, so "win" is output and finalNum is incremented by 1.
8 is divisible by 4, so "win" is output and finalNum is incremented by 1.
13 is not divisible by 4, so "lose" is output and finalNum is not updated.
Then, -3 is read, so the loop terminates and "Final number is 2" is output, followed by a newline.
Not all tests passed.