Problem1217--编程2

1217: 编程2

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

输入任意三个不同的整数,输出其中最大的一个数。

Input

1
2
3

Output

3

Sample Input Copy

7
4
9

Sample Output Copy

9

HINT

a=int(input("请输入第一个数:"))

__①__=int(input("请输入第二个数:"))

c=int(input("请输入第三个数:"))

if a>b:

    __②___

else:

    max=b

if ___③___:

    max=c

print(___④__)

Source/Category