A. p=t-0.25 if t>=20: p=t-0.5 elif t>=30: p=t-1 | B. p=t-1 if t<20: p=t-0.25 elif t<30: p=t-0.5 | C. p=t-0.25 if t>=30: p=t-1 if t>=20: p=t-0.5 | D. p=t-1 if t>=20: p =t-0.5 else: p=t-0.25 |
a=input() b=input() c=a+b print(c) |
n=0 for i in range(1,4): n=n+i print (n) |