+ 1
Code coach Skee-Ball
I get incorrect in test3 of skee-ball and this test case is hidden . What should I do ? Anyone here please suggest me !
3 ответов
+ 6
Zaw Zaw Win 🇲🇲,
We can't read your thoughts. Share the code to make it possible for us to suggest you something.
+ 2
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if (a / 12 >= b) cout << "Buy it!";
else cout << "Try again";
return 0;
}
0
x=int(input())
y=int(input())
if ((x/12)>=y):
print("Buy it!")
else:
print("Try again")
It's simple and easy try copy pasting in exact same way.