Return the Sum of Two Numbers Saturday, 5 June 2021, 5:23 PM Number of replies: 35 Permalink In reply to First post Re: Return the Sum of Two Numbers by Md. Nure Alom 192-15-2791 - Sunday, 6 June 2021, 12:18 PM Python code to find the sum of two numbers Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Abdul Wahid 193-15-2992 - Sunday, 6 June 2021, 12:41 PM Source code:a=int(input("1st number : "))b=int(input("2nd number : "))print("Sum of two number :",a+b) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Mehedi Hasan Rabby - Sunday, 6 June 2021, 12:51 PM x=10 y=23 total=x+y print(total) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by MD RAKIBUL ISLAM(193-15-3015) - Sunday, 6 June 2021, 5:30 PM Return the Sum of Two Numbers Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Mahin Ahmed 191-15-1029 - Monday, 7 June 2021, 1:17 PM def sum(x,y): return x+ya= int(input("Enter first number:"))b= int(input("Enter second number:"))print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Mahmuda Akter Lopa 191-15-1030 - Monday, 7 June 2021, 1:26 PM Num1,Num2 = map(int, input().split(" ")) print("sum of two numbers:", Num1 + Num2 ) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by MD: AL AMIN PATWARY - Monday, 7 June 2021, 1:33 PM a= int(input("Enter the 1st number : ")) b= int(input("Enter the 2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Mohaiminul Islam - Monday, 7 June 2021, 1:48 PM ● A=int(input() ) B=int(input() ) X=A+B Print("X=" , X) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by NUSRAT JAHAN (193-15-2924) - Monday, 7 June 2021, 2:05 PM x=int(input("Enter the 1st number ")) y=int(input("Enter the 2nd number ")) sum = x + y print("the Sum of Two Numbers = ", sum) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Sabrina Islam 193-15-2941 - Tuesday, 8 June 2021, 12:44 AM Sum of Two Numbers Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Al-Ifran (193-15-2915) - Wednesday, 9 June 2021, 9:37 PM Return the Sum of Two Numbers using python Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Sakib Khan Mahin 193-15-3020 - Wednesday, 9 June 2021, 11:25 PM Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Fahim Mahmud 193-15-2939 - Wednesday, 9 June 2021, 11:27 PM Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Razia Sultana Misu(193-15-2976) - Wednesday, 9 June 2021, 11:40 PM Sum of Two Numbers Code: Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by abdullah al taky 193-15-2917 - Thursday, 10 June 2021, 9:36 AM num1=int(input("enter 1st number")) num2=int(input("enter 2nd number")) result=int(num1+num2) print("the sum of two number is: ",result) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Afsana Akter 192-15-2843 - Thursday, 10 June 2021, 9:38 AM Find the sum of two number Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Samanta Sajjad 193-15-3023 - Thursday, 10 June 2021, 9:38 AM Sum of two numbers. Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Md.Sabbir Hossain (192-15-2857) - Friday, 11 June 2021, 11:09 PM 192-15-2857 Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Rony Ahmed - Saturday, 12 June 2021, 1:42 PM X= int(input("Enter the 1st number : "))Y= int(input("Enter the 2nd number : ")) print("Sum of two number :",x+y) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Al Amin 193-15-2981 - Saturday, 12 June 2021, 2:10 PM a=int(input("1st number : ")) b=int(input("2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Jackson Talukder - Monday, 14 June 2021, 12:21 PM a = int(input("Enter 1st number: ")) b = int(input("Enter 2nd number: ")) result = int(a + b) print("The sum of the two number is: ",result) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Mohammad Imam Hossain 191-15-2437 - Monday, 14 June 2021, 1:49 PM def sum(x,y): return x+y a= int(input("Enter first number:")) b= int(input("Enter second number:")) print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Nazbir Ahmed Niloy(191-15-2742) - Monday, 14 June 2021, 2:14 PM def sum(x,y): return x+ya= int(input("Enter first number:"))b= int(input("Enter second number:"))print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Md.Eamon Rahman (193-15-2967) - Thursday, 17 June 2021, 12:36 AM Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Apel Mahmud (193-15-2984) - Thursday, 17 June 2021, 12:31 PM a=int(input("Enter the 1st number : "))b=int(input("Enter the 2nd number : "))print("Sum of two number :",a+b) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Tamanna Akter (193-15-2937) - Friday, 18 June 2021, 7:48 PM p = int(input())q = int(input())result = p+qprint("sum=", result) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Fahamidur Rahaman(192-15-2863) - Saturday, 19 June 2021, 3:09 PM a = int(input()) b = int(input()) x = a + b print("X = %i"% x) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Arafat Rahman Medul 193-15-1073 - Monday, 21 June 2021, 11:36 PM My source Code is given below : Permalink Show parent In reply to First post Return the Sum of Two Numbers by Sadnam Saniat 192-15-2794 - Tuesday, 22 June 2021, 8:40 AM Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Muhammad Shahedul Islam (193-15-2997) - Thursday, 24 June 2021, 5:59 AM a=int(input())b=int(input())print("Sum of two number :",a+b) w11.pdf Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Ata-E-Elahi 193-15-2946 - Monday, 5 July 2021, 8:08 PM x = int(input("Enter the first number:"))y = int(input("Enter the second number:"))Sum = x+yprint("Sum of two numbers=",Sum) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:17 AM ● A=int(input() ) B=int(input() ) X=A+B Print("X=" , X) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Joshinta Jerin - Friday, 6 August 2021, 11:17 AM x=10 y=23 total=x+y print(total) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 18 August 2021, 4:04 PM a = int(input("Enter 1st number: ")) b = int(input("Enter 2nd number: ")) result = int(a + b) print("The sum of the two number is: ",result) Permalink Show parent In reply to First post Re: Return the Sum of Two Numbers by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:15 PM a=int(input("1st number : ")) b=int(input("2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Md. Nure Alom 192-15-2791 - Sunday, 6 June 2021, 12:18 PM Python code to find the sum of two numbers Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Abdul Wahid 193-15-2992 - Sunday, 6 June 2021, 12:41 PM Source code:a=int(input("1st number : "))b=int(input("2nd number : "))print("Sum of two number :",a+b) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Mehedi Hasan Rabby - Sunday, 6 June 2021, 12:51 PM x=10 y=23 total=x+y print(total) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by MD RAKIBUL ISLAM(193-15-3015) - Sunday, 6 June 2021, 5:30 PM Return the Sum of Two Numbers Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Mahin Ahmed 191-15-1029 - Monday, 7 June 2021, 1:17 PM def sum(x,y): return x+ya= int(input("Enter first number:"))b= int(input("Enter second number:"))print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Mahmuda Akter Lopa 191-15-1030 - Monday, 7 June 2021, 1:26 PM Num1,Num2 = map(int, input().split(" ")) print("sum of two numbers:", Num1 + Num2 ) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by MD: AL AMIN PATWARY - Monday, 7 June 2021, 1:33 PM a= int(input("Enter the 1st number : ")) b= int(input("Enter the 2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Mohaiminul Islam - Monday, 7 June 2021, 1:48 PM ● A=int(input() ) B=int(input() ) X=A+B Print("X=" , X) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by NUSRAT JAHAN (193-15-2924) - Monday, 7 June 2021, 2:05 PM x=int(input("Enter the 1st number ")) y=int(input("Enter the 2nd number ")) sum = x + y print("the Sum of Two Numbers = ", sum) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Sabrina Islam 193-15-2941 - Tuesday, 8 June 2021, 12:44 AM Sum of Two Numbers Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Al-Ifran (193-15-2915) - Wednesday, 9 June 2021, 9:37 PM Return the Sum of Two Numbers using python Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Sakib Khan Mahin 193-15-3020 - Wednesday, 9 June 2021, 11:25 PM Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Fahim Mahmud 193-15-2939 - Wednesday, 9 June 2021, 11:27 PM Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Razia Sultana Misu(193-15-2976) - Wednesday, 9 June 2021, 11:40 PM Sum of Two Numbers Code: Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by abdullah al taky 193-15-2917 - Thursday, 10 June 2021, 9:36 AM num1=int(input("enter 1st number")) num2=int(input("enter 2nd number")) result=int(num1+num2) print("the sum of two number is: ",result) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Afsana Akter 192-15-2843 - Thursday, 10 June 2021, 9:38 AM Find the sum of two number Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Samanta Sajjad 193-15-3023 - Thursday, 10 June 2021, 9:38 AM Sum of two numbers. Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Md.Sabbir Hossain (192-15-2857) - Friday, 11 June 2021, 11:09 PM 192-15-2857 Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Rony Ahmed - Saturday, 12 June 2021, 1:42 PM X= int(input("Enter the 1st number : "))Y= int(input("Enter the 2nd number : ")) print("Sum of two number :",x+y) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Al Amin 193-15-2981 - Saturday, 12 June 2021, 2:10 PM a=int(input("1st number : ")) b=int(input("2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Jackson Talukder - Monday, 14 June 2021, 12:21 PM a = int(input("Enter 1st number: ")) b = int(input("Enter 2nd number: ")) result = int(a + b) print("The sum of the two number is: ",result) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Mohammad Imam Hossain 191-15-2437 - Monday, 14 June 2021, 1:49 PM def sum(x,y): return x+y a= int(input("Enter first number:")) b= int(input("Enter second number:")) print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Nazbir Ahmed Niloy(191-15-2742) - Monday, 14 June 2021, 2:14 PM def sum(x,y): return x+ya= int(input("Enter first number:"))b= int(input("Enter second number:"))print("Sum of the given two numbers is: ", sum(a,b)) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Md.Eamon Rahman (193-15-2967) - Thursday, 17 June 2021, 12:36 AM Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Apel Mahmud (193-15-2984) - Thursday, 17 June 2021, 12:31 PM a=int(input("Enter the 1st number : "))b=int(input("Enter the 2nd number : "))print("Sum of two number :",a+b) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Tamanna Akter (193-15-2937) - Friday, 18 June 2021, 7:48 PM p = int(input())q = int(input())result = p+qprint("sum=", result) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Fahamidur Rahaman(192-15-2863) - Saturday, 19 June 2021, 3:09 PM a = int(input()) b = int(input()) x = a + b print("X = %i"% x) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Arafat Rahman Medul 193-15-1073 - Monday, 21 June 2021, 11:36 PM My source Code is given below : Permalink Show parent
In reply to First post Return the Sum of Two Numbers by Sadnam Saniat 192-15-2794 - Tuesday, 22 June 2021, 8:40 AM Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Muhammad Shahedul Islam (193-15-2997) - Thursday, 24 June 2021, 5:59 AM a=int(input())b=int(input())print("Sum of two number :",a+b) w11.pdf Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Ata-E-Elahi 193-15-2946 - Monday, 5 July 2021, 8:08 PM x = int(input("Enter the first number:"))y = int(input("Enter the second number:"))Sum = x+yprint("Sum of two numbers=",Sum) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Anik Sheikh (193-15-3000) - Thursday, 5 August 2021, 10:17 AM ● A=int(input() ) B=int(input() ) X=A+B Print("X=" , X) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Joshinta Jerin - Friday, 6 August 2021, 11:17 AM x=10 y=23 total=x+y print(total) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by Md. Jannatul Ferdous 191-15-2497 - Wednesday, 18 August 2021, 4:04 PM a = int(input("Enter 1st number: ")) b = int(input("Enter 2nd number: ")) result = int(a + b) print("The sum of the two number is: ",result) Permalink Show parent
In reply to First post Re: Return the Sum of Two Numbers by RIFAT ahmed (193-15-2911) - Thursday, 26 August 2021, 1:15 PM a=int(input("1st number : ")) b=int(input("2nd number : ")) print("Sum of two number :",a+b) Permalink Show parent