second job

a = input('Enter a number:')
b = input('Enter another number:')
sum2=int(a)+int(b)

print('The sum of the two numbers is {}'.format(sum2))

  

c = input('Enter the temperature in Celsius:')
f = float(c)*9/5+32
print('{}Celsius to Fahrenheit is {}'.format(c,f))

  

f = input('Enter Fahrenheit temperature:')
c = 5/9*(float(f)-32)
print('{}Celsius to Fahrenheit is {}'.format(f,c))

  

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324855631&siteId=291194637