time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

There are three friend living on the straight line Ox in Lineland. The first friend lives at the point x1, the second friend lives at the point x2, and the third friend lives at the point x3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they have to travel in order to meet at some point and celebrate the New Year?

It's guaranteed that the optimal answer is always integer.

Input

The first line of the input contains three distinct integers x1, x2 and x3 (1 ≤ x1, x2, x3 ≤ 100) — the coordinates of the houses of the first, the second and the third friends respectively.

Output

Print one integer — the minimum total distance the friends need to travel in order to meet together.

Examples
Input
7 1 4
Output
6
Input
30 20 10
Output
20
Note

In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.

代码1:

#include<stdio.h>
int main(){
int a,b,c,t,dis;
while(~scanf("%d %d %d",&a,&b,&c)){
if(a<b)swap(a,b);if(a<c)swap(a,c);if(b<c)swap(b,c);
dis=a-c;
printf("%d\n",dis);
}
return ;
}

代码2:

#include<stdio.h>
#include<math.h>
int main(){
int a,b,c,dis,m;
while(~scanf("%d %d %d",&a,&b,&c)){
m=;
for(int i=;i<=;i++){
  dis=fabs(a-i)+fabs(b-i)+fabs(c-i);
   if(m>dis)
  m=dis;
}
printf("%d\n",m);
}
return ;
}

最新文章

  1. 【android 开 发 】 - Android studio 下 NDK Jni 开发 简单例子
  2. 使用eclipse进行Android编程发生崩溃的一个问题及解决办法
  3. pip使用
  4. objective-c &quot;performSelector may cause a leak because its selector is unknown&quot;.
  5. POJ 1733 Parity game(离散化+带权并查集)
  6. uva 315 Network(无向图求割点)
  7. ios的NSMutableString用法
  8. 构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(1)-前言与目录(持续更新中...)
  9. MD5加密字符串-备用
  10. 设置Cookie,登录记住用户登录信息,获取用户登录过得信息
  11. windows系统SVN和apache的下载和安装
  12. 不使用Math.random实现随机数
  13. 测试APPEND INSERT是否产生UNDO信息的过程
  14. Html img 标签
  15. shell数组的使用
  16. Singleton Summary
  17. 移动开发--移动web特别样式处理
  18. 全平台 Chrome 浏览器 44.0.2403.89 版本下载
  19. Day19内容回顾
  20. Qt for android运行时出错 Error: Target id &#39;android--1&#39; is not valid

热门文章

  1. 【题解】ZJOI2010贪吃的老鼠
  2. [LOJ#2553][CTSC2018]暴力写挂
  3. [SCOI2010]序列操作 线段树
  4. Bash script: report largest InnoDB files
  5. IOI1998 Polygon [区间dp]
  6. VC++使用CImage PNG转BMP图片透明背景处理
  7. 在Global.asax中过滤POST请求的非法参数。
  8. svn“Previous operation has not finished; run &#39;cleanup&#39; if it was interrupted“ 或者不能cleanup,或者提示空目录 报错的解决方法
  9. Nginx中的长连接
  10. php windows rename 中文出错