题目描述

Write a program that inputs three integers from the keyboard and prints the sum, average, product, smallest and largest of these numbers. The screen dialog should appear as follows:
Input three different integers: 13 27 14
Sum is 54
Average is 18
Product is 4914
Smallest is 13
Largest is 27


输入格式

A line that contains three integers


输出格式

Prints the sum, average, product, smallest and largest of these numbers


样例数据

输入

13 27 14

输出

Input three different integers: Sum is 54
Average is 18
Product is 4914
Smallest is 13
Largest is 27

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解