You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
num = int(input(f'Введите любое целое число: '))
max_value = 2000000000
if not (1 <= num <= 100000):
print(f'Число "{num}" не входит в диапахон от 1 до 100000.')
else:
numbers = set()
k = 0
for i in range(num):
k = int(input(f'Введите {i + 1}-е целое число: '))
while not (k < max_value):
k = int(input(f'Введенное число "{k}" превышает допустимое значение 2*10е9. Повторите ввод: '))
else:
numbers.add(k)
print(len(numbers))
The text was updated successfully, but these errors were encountered:
num = int(input(f'Введите любое целое число: '))
max_value = 2000000000
if not (1 <= num <= 100000):
print(f'Число "{num}" не входит в диапахон от 1 до 100000.')
else:
numbers = set()
k = 0
for i in range(num):
k = int(input(f'Введите {i + 1}-е целое число: '))
while not (k < max_value):
k = int(input(f'Введенное число "{k}" превышает допустимое значение 2*10е9. Повторите ввод: '))
else:
numbers.add(k)
print(len(numbers))
The text was updated successfully, but these errors were encountered: