Need code for this program.(python3) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need code for this program.(python3)

https://www.hackerrank.com/contests/t3-e/challenges/trip-or-not CODE :- n,s,c,h,l,t=int(input()),int(input()),int(input()),int(input()),int(input()),int(input()) a=l*t b=n-(s*c*h) if a<=b:     print("Goa Jaayenge") else:     print('Padhai Karenge')

28th Jan 2020, 4:37 PM
Himanshu Patel
Himanshu Patel - avatar
2 Answers
+ 4
Someone might help you but before asking a question kindly share your attempt so that the community can see what you have done and where have you gone wrong.
28th Jan 2020, 4:39 PM
Avinesh
Avinesh - avatar
0
Avinesh n,s,c,h,l,t=int(input()),int(input()),int(input()),int(input()),int(input()),int(input()) a=l*t b=n-(s*c*h) if a<=b:     print("Goa Jaayenge") else:     print('Padhai Karenge')
28th Jan 2020, 4:41 PM
Himanshu Patel
Himanshu Patel - avatar