A. Ciel and Dancing
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Fox Ciel and her friends are in a dancing room. There are n boys and m girls here, and they never danced before. There will be some songs, during each song, there must be exactly one boy and one girl are dancing. Besides, there is a special rule:

  • either the boy in the dancing pair must dance for the first time (so, he didn't dance with anyone before);
  • or the girl in the dancing pair must dance for the first time.

Help Fox Ciel to make a schedule that they can dance as many songs as possible.

Input

The first line contains two integers n and m (1 ≤ n, m ≤ 100) — the number of boys and girls in the dancing room.

Output

In the first line print k — the number of songs during which they can dance. Then in the following k lines, print the indexes of boys and girls dancing during songs chronologically. You can assume that the boys are indexed from 1 to n, and the girls are indexed from 1 to m.

Sample test(s)
input
2 1
output
2
1 1
2 1
input
2 2
output
3
1 1
1 2
2 2
Note

In test case 1, there are 2 boys and 1 girl. We can have 2 dances: the 1st boy and 1st girl (during the first song), the 2nd boy and 1st girl (during the second song).

And in test case 2, we have 2 boys with 2 girls, the answer is 3.

题目意思是跳舞的满足2个条件,要么男的是第一次,要么女的是第一次。那答案很显然就是 n+m-1。 
n+m-1
1 1
1 2
1 3
...
1 m
2 1
3 1
...
n 1

/*
* @author ipqhjjybj
* @date 20130711
*
*/
#include <cstdio>
#include <cstdlib> int main(){
int n,m;
scanf("%d %d",&n,&m);
printf("%d\n",n+m-1);
for(int i = 1;i<=m;i++){
printf("1 %d\n",i);
}
for(int i = 2;i<=n;i++){
printf("%d 1\n",i);
}
return 0;
}

最新文章

  1. CSS画图
  2. Microsoft.Crm.Setup.SrsDataConnector.RegisterServerAction 操作失败
  3. Cacti:添加监控磁盘IO
  4. JSTL标签库简介
  5. PhpStorm+PhpStudy+xdebug 配置图解
  6. ZigBee协议学习之网络层
  7. 【php】中【event】之实现方式
  8. 如何创建WIN服务
  9. Phoenix中Sequence的用法
  10. vue数据源转json问题
  11. dedesms中的导致生成静态页面多出&#65279空白行解决办法
  12. 禁ping以及清理系统多余账号说明
  13. 【一天一道LeetCode】#121. Best Time to Buy and Sell Stock
  14. EBS DBA指南笔记(二)
  15. 魔术方法:__set、__get
  16. Nginx代理实现内网主机访问公网服务
  17. laravel orm
  18. 基于mongoose 的增删改查操作
  19. coursera课程Text Retrieval and Search Engines之Week 2 Overview
  20. Html之网页分屏浏览

热门文章

  1. [Openstack] Expecting an auth URL via either --os-auth-url or env[OS_AUTH_URL]
  2. Hibernat之关系的处理多对多
  3. Java设计模式偷跑系列(六)Singleton模式的建模与实现
  4. CSS3可按进度变色的进度条
  5. request.getparameter和 request.getattribute的差别
  6. View &amp; ViewData
  7. oracle实现自加力id
  8. 百度Web App在线生成平台Site App体验
  9. EF codefirst+mvc4+bootstrap+autofac+ddd 系统共享 祝大家新年开心搬砖
  10. IOC 容器在 ASP.NET MVC 中的应用