Write a Python Program to Multiply Two Numbers by Repeated Addition - LeetCode

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Multiply Two Numbers by Repeated Addition

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
first = int(input("Enter First Number : "))
second = int(input("Enter Second Number : "))

product = 0
for _ in range(second):
product = product + first

print(f"Product of {first} x {second} = {product}")

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме