aboutsummaryrefslogtreecommitdiff
path: root/challenge-343/ulrich-rieke/python/ch-1.py
blob: efef60996f36674141c013fb950198bdaca51c31 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env python3

line = input( "Enter some integers separated by blanks!\n" ) ;
differences = []
for w in line.split( ' ' ):
   differences.append(abs(int(w)))
print( min( differences ))