# a,b,c=map(int,input().split())# if a>=b>=c:# print(c,b,a,sep=' ')# elif a>=c>=b:# print(b,c,a,sep=' ')# elif b>=a>=c:# print(c,a,b,sep=' ')# elif b>=c>=a:# print(a,c,b,sep=' ')# elif c>=a>=b:# print(b,a,c,sep=' ')# else:# print(a,b,c,sep=' ')# a, b, c = map(int, input().split())## x = [a, b, c]# x.sort()# def swap(x, y):# if x > y:# return y, x# else:# return x, y## # if a , b, c ,,,>> c# # 20 10 5# a, b = swap(a, b)# b, c = swap(b, c)# a, b = s# a,b,c=map(int,input().split())
# if a>=b>=c:
# print(c,b,a,sep=' ')
# elif a>=c>=b:
# print(b,c,a,sep=' ')
# elif b>=a>=c:
# print(c,a,b,sep=' ')
# elif b>=c>=a:
# print(a,c,b,sep=' ')
# elif c>=a>=b:
# print(b,a,c,sep=' ')
# else:
# print(a,b,c,sep=' ')
# a, b, c = map(int, input().split())
#
# x = [a, b, c]
# x.sort()
# def swap(x, y):
# if x > y:
# return y, x
# else:
# return x, y
#
# # if a , b, c ,,,>> c
# # 20 10 5
# a, b = swap(a, b)
# b, c = swap(b, c)
# a, b = swap(a, b)
# # 10 5 20
# print(a, b, c)
# '''
# traditional swap method
# a: 10
# b: 5
#
# t = 10
# a = 5
# b = 10
# '''
# a,b=map(int,input().split())
# c=b-30
# if a!=0:
# if c < 0:
# print(a - 1, 60+ c)
# else:
# print(a, c)
# else:
# if c<0:
# print(23,60+c)
# else:
# print(a,c)
# n=int(input())
# a=n//10
# b=n%10
# t=(10*b+a)*2%100
#
# if t>100:
# print(t-100)
# if t<=150:
# print("GOOD")
# else:
# print("OH MY GOD")
# else:
# print(t)
# if t<=50:
# print("GOOD")
# else:
# print("OH MY GOD")
# a,b=map(float,input().split())
# maxValue = -99999999
#
# maxValue=max([maxValue,a+b])
# maxValue=max([maxValue,a-b])
# maxValue=max([maxValue,b-a])
# maxValue=max([maxValue,a/b])
# maxValue=max([maxValue,b/a])
# maxValue=max([maxValue,a*b])
# maxValue=max([maxValue,a**b])
# maxValue=max([maxValue,b**a])
#
# print("%.6f"%maxValue)
# a,b=map(int,input().split())
# c=a/b
# if a%b!=0 and b%a!=0:
# print('none')
# else:
# if c >= 1:
# print(b,'*',int(c),'=',a,sep='')
# if c < 1:
# print(a,'*',int(1/c),'=',b,sep='')
#for i in range(N,M,K):
#print (data[i])
#data=list(map(int,input().split()))
# for i in range(1,101):
# print(i,end=' ')
# n=int(input())
# for i in range(1,n+1):
# print(i,end=' ')
# a,b=map(int,input().split())
# if b>=a:
# for i in range(a, b + 1):
# print(i, end=' ')
# else:
# for i in range(b, a + 1):
# print(i, end=' ')
# a,b=input().split()
# a=ord(a)
# b=ord(b)
# for i in range(a, b + 1):
# print(chr(i), end=' ')
# a,b=map(int,input().split())
# if a%2==0:
# for i in range(a+1,b+1,2):
# print(i,end=' ')
# else:
# for i in range (a,b+1,2):
# print(i,end=' ')
# n=int(input())
# if n%2==0:
# print(int((1+n)*n/2))
# else:
# print(int((n+1)/2*n))
# n = int(input())
# s = 0
# for i in range(1, n+1):
# s = s + i
# print(s)
# # s += i
# n=int(input())
# s=0
# for i in range(2,n+1,2):
# s += i
# print(s)
# a,b=map(int,input().split())
# s=0
# for i in range(a, b+1):
# if i%3==0:
# s+=i
# print(s)
# a=int(input())
# for i in range(1,10):
# print(a,'*',i,'=',a*i,sep='')
wap(a, b)# # 10 5 20# print(a, b, c)# '''# traditional swap method# a: 10# b: 5## t = 10# a = 5# b = 10# '''# a,b=map(int,input().split())# c=b-30# if a!=0:# if c < 0:# print(a - 1, 60+ c)# else:# print(a, c)# else:# if c<0:# print(23,60+c)# else:# print(a,c)# n=int(input())# a=n//10# b=n%10# t=(10*b+a)*2%100## if t>100:# print(t-100)# if t<=150:# print("GOOD")# else:# print("OH MY GOD")# else:# print(t)# if t<=50:# print("GOOD")# else:# print("OH MY GOD")# a,b=map(float,input().split())# maxValue = -99999999## maxValue=max([maxValue,a+b])# maxValue=max([maxValue,a-b])# maxValue=max([maxValue,b-a])# maxValue=max([maxValue,a/b])# maxValue=max([maxValue,b/a])# maxValue=max([maxValue,a*b])# maxValue=max([maxValue,a**b])# maxValue=max([maxValue,b**a])## print("%.6f"%maxValue)# a,b=map(int,input().split())# c=a/b# if a%b!=0 and b%a!=0:# print('none')# else:# if c >= 1:# print(b,'*',int(c),'=',a,sep='')# if c < 1:# print(a,'*',int(1/c),'=',b,sep='')#for i in range(N,M,K):#print (data[i])#data=list(map(int,input().split()))# for i in range(1,101):# print(i,end=' ')# n=int(input())# for i in range(1,n+1):# print(i,end=' ')# a,b=map(int,input().split())# if b>=a:# for i in range(a, b + 1):# print(i, end=' ')# else:# for i in range(b, a + 1):# print(i, end=' ')# a,b=input().split()# a=ord(a)# b=ord(b)# for i in range(a, b + 1):# print(chr(i), end=' ')# a,b=map(int,input().split())# if a%2==0:# for i in range(a+1,b+1,2):# print(i,end=' ')# else:# for i in range (a,b+1,2):# print(i,end=' ')# n=int(input())# if n%2==0:# print(int((1+n)*n/2))# else:# print(int((n+1)/2*n))# n = int(input())# s = 0# for i in range(1, n+1):# s = s + i# print(s)# # s += i# n=int(input())# s=0# for i in range(2,n+1,2):# s += i# print(s)# a,b=map(int,input().split())# s=0# for i in range(a, b+1):# if i%3==0:# s+=i# print(s)# a=int(input())# for i in range(1,10):# print(a,'*',i,'=',a*i,sep='')
top of page

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