0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 02:18:48 +00:00

P1421 小玉买文具

R58783030
This commit is contained in:
Baoshuo Ren 2021-09-30 12:57:34 +08:00 committed by Baoshuo Ren
parent fb12fb3896
commit 224d645916
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,12 @@
#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;
}