0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 17:25:24 +00:00
OI-codes/Luogu/P1421/P1421.cpp

13 lines
165 B
C++

#include <bits/stdc++.h>
using namespace std;
int a, b, c;
int main() {
cin >> a >> b;
c = a * 10 + b;
cout << floor(c / 19) << endl;
return 0;
}