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:
parent
fb12fb3896
commit
224d645916
12
Luogu/problem/P1421/P1421.cpp
Normal file
12
Luogu/problem/P1421/P1421.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user