题目传送门

#include <bits/stdc++.h>

using namespace std;

int main() {
    int a, b;
    cin >> a >> b;
    int c = 19;
    int d = a * 10 + b;
    int e = d / c;
    cout << e << endl;
    return 0;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-16
  • 2022-12-23
  • 2021-10-14
  • 2022-12-23
  • 2021-10-15
猜你喜欢
  • 2021-04-04
  • 2022-12-23
  • 2022-12-23
  • 2021-05-15
  • 2021-08-04
相关资源
相似解决方案