# print ('Fun Programming!')
# print ("Programming! It's fun.")
# print ('My name is Hong Gil Dong.')
# print ('I am 13 years old.')
# print ('(@) (@)')
# print ('(=^.^=)')
# print ('(-m-m-)')
# print ('I can program well.\nDreams come true.')
# print ('My height\n170')
# print ('My weight\n68.600000')
# print ('5 Dan')
# print ('5 * 2 = 10')
# print (' item count price')
# print (' pen 20 100')
# print (' note 5 95')
# print (' eraser 110 97')
# xValue = int(input())
# print(xValue)
# print(type(xValue))
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x, y)
# x = int(input())
# y = int(input())
# x = -100
# print(x)
# x = ('55 - 10 = 45')
# y = ('2008 - 1999 = 9')
# print (x)
# print (y)
# yd = 91.44
# inch = 2.54
#
# x = 2.1
# y = 10.5
#
# print('%4.1fyd = %.1fcm' %(x, x*yd))
# print ('%.1f' %(yd*2.1), end="cm\n")
# print ('%.1f' %(inch*10.5), end="cm")
# PI = 3.141592
#
# print('%.2f' %PI)
# a = 91.44
# b = 2.54
# x = 2.1
# y = 10.5
# print ('%4.1fyd = %.1fcm' %(x, x*a))
# print ('%.1fin = %5.1fcm' %(y, y*b))
# x, y = input().split()
# x = int(x)
# y = int(y)
# print (x, '*', y, '=', x*y)
# print (x, '/', y, '=', x//y)
# a, b, c = input().split()
#
# a = int(a)
# b = int(b)
# c = int(c)
# print ('sum :', a+b+c)
# print ('avg :', (a+b+c)//3)
# a, b = input().split()
# a = int(a)
# b = int(b)
# print (a+100, b%10)
a, b = input().split()
a = int(a)
b = int(b)
print (a+1, b-1, a*(b-1))
top of page

기능을 테스트하려면 라이브 사이트로 이동하세요.
220724
220724
댓글 0개
좋아요
댓글(0)
bottom of page