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

ic100-assignment

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="ic100-assignment")

# Question 1 a]

a,b=map(int,input().split())
c = a
a = b
b = c
print(a,b)
84 14 14 84