Q2
Q2
1) Write a program which prompts the user for a Celsius temperature, convert the temperature
to
Fahrenheit, and print out the converted temperature.
Formula : (°C × 9/5) + 32 = °F
## Input
```
Enter Temperature in Celsius: 10
```
## Output
```
10 Celsius = 50 Fahrenheit
2)Write a program that takes an integer number from console and checks whether if a
number is an odd or even.
Example:
Input : 100
Output : Even
Hint:
Use modulus operator that we have learnt in previous section