Saved Bookmarks
| 1. |
Write a python program to accepts two integers and print their sum |
|
Answer» Python Program to Add TWO NUMBERSA = int(input("enter first number: "))b = int(input("enter second number: "))sum = a + b.print("sum:", sum)EXPLANATION:HOPE this HELPS u ❣Gummonie ☺pls Flw me ☹give me thnks ☹✌ITZ AbUsiNg QuEeN ✌ |
|