Making a Unit Converter (KG to Grams) with Python with only 3 lines of code!!!

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

a = int (input ("KG : "))
b= a+1000
print (b, "grams")

mohinitomar