+ 1
what's wrong
#include <stdio.h> int main() { int a,b; scanf("%d",&a); scanf("%d",&b); if(a/12>b) printf("Buy it!"); else printf("Try again"); return 0; }
4 ответов
+ 7
a/12 >= b
+ 5
ah Hatsy Rei you beat me to it
0
a/12>=b
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.