#abc268a. A - Five Integers

A - Five Integers

Score : 100100 points

问题描述

在给定的五个整数 A,B,C,DA, B, C, DEE 中,输出有多少个不同的整数。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Print how many distinct integers there are in given five integers A,B,C,DA, B, C, D, and EE.

Constraints

  • 0A,B,C,D,E1000 \leq A, B, C, D, E \leq 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB CC DD EE

Output

Print the answer.

Sample Input 1

31 9 24 31 24

Sample Output 1

3

In the given five integers 31,9,24,3131, 9, 24, 31, and 2424, there are three distinct integers 9,249, 24, and 3131. Thus, 33 should be printed.

Sample Input 2

0 0 0 0 0

Sample Output 2

1

update @ 2024/3/10 11:17:35