x_str = input(" Enter a number : ")
x_int = int(x_str)
if (x_int > 0) :
print(x_int, "is positive!")
y = x_int * 2
print("Twice of",x_int ,"is" ,y)
