#abc268a. A - Five Integers
A - Five Integers
Score : points
问题描述
在给定的五个整数 和 中,输出有多少个不同的整数。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
Print how many distinct integers there are in given five integers , and .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
31 9 24 31 24
Sample Output 1
3
In the given five integers , and , there are three distinct integers , and . Thus, should be printed.
Sample Input 2
0 0 0 0 0
Sample Output 2
1
update @ 2024/3/10 11:17:35