Day 1: Variables & Data Types – Coding Problems

🧪 Problem 1: Swap Two Variables Without Using a Third Variable

Write a Python program to swap two variables without using a temporary variable.

🔢 Problem 2: Sum of Digits of a Number

Input a number and return the sum of its digits.

🕹️ Problem 3: Find the Data Type

Take input from the user and print the data type of the input.

🌡️ Problem 4: Convert Celsius to Fahrenheit

Formula: F = (C × 9/5) + 32

⏱️ Problem 5: Seconds to Hours, Minutes, Seconds

Input total seconds and convert them into HH:MM:SS format.