a = int(input('a = '))
b = int(input('b = '))
print(type(a))
print(type(b))
# Или
print(type(a), type(b)) # через пробел.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a = int(input('a = '))
b = int(input('b = '))
print(type(a))
print(type(b))
# Или
print(type(a), type(b)) # через пробел.