Learn practical skills, build real-world projects, and advance your career

exercises

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="exercises")
[jovian] Updating notebook "amirtha/exercises" on https://jovian.ai [jovian] Committed successfully! https://jovian.ai/amirtha/exercises
a = 2
b = 10
c = 20

a * b + (c ** a // b - b) 
50