How do I create a variable and add the type as an integer but with no value set? I need this variable to do this:
a = int(input())
b = int(input())
x = int # tentei colocar o tipo da variável como inteira dessa forma, mas dá erro.
if a * x == b: # a variável x precisa ser um número qualquer e inteiro para que funcione com o "if".
print(f'O MMC entre {a} e {b} é {a}.')