Commit 58411e02 by BellCodeEditor

auto save

parent 18891748
Showing with 24 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(-200,200)
pen.pendown()
for i in range(4):
pen.forward(400)
pen.right(90)
pen.penup()
pen.goto(0,0)
pen.pencolor("red")
pen.pendown()
for i in range(4):
pen.forward(200)
pen.goto(0,0)
pen.right(90)
pen.hideturtle()
turtle.done()
money=int(input())
price=int(input())
num=int(input())
print(money >= price * num)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment