A. Find Divisible

签到。

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 int t, l, r;
 5 
 6 int main()
 7 {
 8     scanf("%d", &t);
 9     while (t--)
10     {
11         scanf("%d%d", &l, &r);
12         printf("%d %d\n", l, l * 2);
13     }
14     return 0;
15 }
View Code

相关文章:

  • 2021-10-25
  • 2021-12-03
  • 2021-11-21
  • 2021-11-09
  • 2021-09-07
  • 2021-06-24
  • 2021-06-23
  • 2022-01-27
猜你喜欢
  • 2022-01-15
  • 2021-08-28
  • 2021-09-20
  • 2021-08-24
  • 2021-07-11
  • 2021-06-05
相关资源
相似解决方案