this error is shown :
Exception has occurred: TypeError
int() argument must be a string, a bytes-like object or a number, not 'NoneType'
File "C:\Users\Asus\Desktop\pro6.py", line 3, in <module>
print(int(a))
My code:
x=int(input())
a=print((str(x%5)+str(x%100//10)+str(x//100)))
print(int(a)*2)