题目描述

Write a program that uses a function template called minimum to determine the smaller of two arguments. Test the program using integer, character and floatingpoint number arguments.


输入格式


输出格式

Note the '\n' between each lines.


样例数据

输入

1 2 a b 5.5 6.5

输出

Input two integer values: The smaller integer value is: 1

Input two characters: The smaller character value is: a

Input two double values: The smaller double value is: 5.5

备注


操作

评测记录

优秀代码

信息

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

题解