All pastes #2103385 Raw Edit

Anonymous

public python v1 · immutable
#2103385 ·published 2012-01-16 04:59 UTC
rendered paste body
#!/usr/bin/pythondef max(one, two):	if(one > two):		return one	else:		return twonumOne = input(">> Enter a number: ")numTwo = input(">> Enter another number: ")print("The maximum value is: " + str(max(numOne, numTwo)))