Respuesta :
Answer:
Programming is a set of instructions i.e. Input given by the user to the computer to perform a particular task and give the desired result i.e. output.
Final Answer
s=0
for i in range(1,26):
s=s+ i
print(s)
Explanation:
IF THE ANSWER IS CORRECT THEN MARK A BRAINLEST
[tex]\tt s=0[/tex]
[tex]\tt for\: i\:in\:range(25)[/tex]
[tex]\tt p=s+i[/tex]
[tex]\tt print(p)[/tex]
we are done .
