A. Dasha and Stairs
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

On her way to programming school tiger Dasha faced her first test — a huge staircase!

The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has something to do with their color. So on some interval of her way she calculated two values — the number of steps with even and odd numbers.

You need to check whether there is an interval of steps from the l-th to the r-th (1 ≤ l ≤ r), for which values that Dasha has found are correct.

Input

In the only line you are given two integers a, b (0 ≤ a, b ≤ 100) — the number of even and odd steps, accordingly.

Output

In the only line print "YES", if the interval of steps described above exists, and "NO" otherwise.

Examples
Input
2 3
Output
YES
Input
3 1
Output
NO
Note

In the first example one of suitable intervals is from 1 to 5. The interval contains two even steps — 2 and 4, and three odd: 1, 3 and 5.

 #include <iostream>
#include <cmath>
using namespace std; int main()
{
int a, b;
cin >> a >> b;
if(a == && b == )
{
cout << "NO" << endl;
}
else if(abs(a - b) <= )
{
cout << "YES" << endl;
}
else cout << "NO" << endl;
return ;
}

最新文章

  1. 在Windows和Linux上安装paramiko模块以及easy_install的安装方法
  2. iOS 使用Storyboard 和 xib时的一些知识
  3. STM32学习笔记——FSMC 驱动大容量NAND FLASH [复制链接]
  4. 如何解决Python脚本在Linux和Windows上的格式问题
  5. 安装pip之后,执行pip,提示:unknown or unsupported command install
  6. zoj 3878 Convert QWERTY to Dvorak【好坑的模拟】
  7. 新安装 wampserver 出现 You don&#39;t have permission to access / on this server. 或者访问数据库出现You don&#39;t have permission to access /phpmyadmin/ on this server.(解决方法)转
  8. ELK初学搭建(logstash)
  9. JBOSS EAP6.2.0的下载安装、环境变量配置以及部署
  10. 《JAVASCRIPT高级程序设计》原生拖放和媒体元素
  11. NlpirParser智能挖掘平台词性标注新算法
  12. 移动端 slide拖拽
  13. vmware中nat模式中使用静态ip后无法上网的问题
  14. CAP理论与分布式事务解决方案
  15. 【学习】基础知识:数组和矢量计量【Numpy】
  16. 使用jQuery+huandlebars中with应用及with+this应用
  17. HNOI2019 白兔之舞 dance
  18. JavaScript之DOM等级概述
  19. luogu P1627 [CQOI2009]中位数
  20. EMMC 介绍【转】

热门文章

  1. css模拟下拉菜单
  2. python连接数据库(pymysql)及数据库加密
  3. c#面向对象基础3
  4. OpenACC 《大规模并行处理器编程实战》教材讲解
  5. linux系统安装pycharm环境
  6. HTML5播放器 MediaElement.js 使用方法
  7. C# WEB.API 接收并解析保存base64格式的图片
  8. leetcode929
  9. eclipse在运行main方法时在console里面报内存溢出的错误解决办法
  10. JSP复习(part 4)