6 lines
104 B
Python
6 lines
104 B
Python
into = input()
|
|
eyes, nose, mouth = into.split(' ')
|
|
total = int(eyes)*int(nose)*int(mouth)
|
|
|
|
print(total)
|