Skip to content

Instantly share code, notes, and snippets.

@muthu1809
Created May 5, 2022 09:27
Show Gist options
  • Save muthu1809/1e613f17f18d20753c12d9c75246bc6c to your computer and use it in GitHub Desktop.
Save muthu1809/1e613f17f18d20753c12d9c75246bc6c to your computer and use it in GitHub Desktop.
மொத்தச்_செலவு = 0 #முதல் நாள் 5 ரூபாய் கொடுப்பதற்கு முன்
நாள் = 1 #முதல் நாள்
பணம் = 5 # முதல் நாள் கொடுக்கும் பணம்
while நாள்<=10: # பத்து நாள் வரை
மொத்தச்_செலவு = மொத்தச்_செலவு + பணம்
நாள்+=1 #ஒவ்வொரு நாளாகக் கூடும்
else:
print(மொத்தச்_செலவு)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment