PAT B 1086 will not tell you

The code was released, we learn together, help each other
Title:
Here Insert Picture Description
Input Sample:

5 7

Sample output:

53

This question is very simple, is the title and the subject is too skin, ha ha ha ha
code is as follows (Python):

x, y = input().split()
x = int(x)
y = int(y)
n = str(x * y)[::-1]
print(int(n))
Published 65 original articles · won praise 25 · views 1027

Guess you like

Origin blog.csdn.net/chongchujianghu3/article/details/104987285