+ 2
I want to give a condition if result of this code greater than 33 then print ("you have been passed")...please help
x=int(input()) y=int(input()) print ("sum of", x ,"and",y,"is", x+y )
2 odpowiedzi
+ 8
x=int(input())
y=int(input())
sum=x+y
print("sum of ",x, "and",y,"is",x+y)
if(sum>33):
print("you have been passed")
Thanks
+ 4
if(int(input())+int(input()) > 33):print("passed")