Input a number in T.Calculate then print the following formulae:-
G=4028+T/4+T2+8*T
please help
Answers
Answered by
0
Answer:
#Python
Explanation:
t= int(input("Enter a value: " ))
s = 4028 + t/4 + t *2 + t * 8
print("Result :" , s)
Similar questions