#Ito po code ko diko talaga ma gets. Pa help mga papsy
sum, i=0, 3
number=int(input("Input number:"))
choice = input("Again?(Y/N)")
while choice.lower() == "y" or choice.upper() == "Y":
for i in range(1,3):
sum = sum + number
print("Total number inputted:",choice)
print("Sum:",sum)...