c_code/计算徽章数量.cpp

9 lines
110 B
C++

#include<iostream>
using namespace std;
int main() {
int a, b;
cin>>a>>b;
cout<<(a*10+b)/21;
return 0;
}