PROGRAMMING:Maximum of two integers
Find the maximum value of two integers a and B, and store the result in max.
###Input format:
Enter two integers on a line, separated by a space, without any additional characters.
###Output format:
Output in the order of "max = result" in one line. The result is output as is without any other additional format.
###Input example:
```in
3 5
```
###Output example:
```out
max=5
```
answer:If there is no answer, please comment
###Input format:
Enter two integers on a line, separated by a space, without any additional characters.
###Output format:
Output in the order of "max = result" in one line. The result is output as is without any other additional format.
###Input example:
```in
3 5
```
###Output example:
```out
max=5
```
answer:If there is no answer, please comment