# a, b = input().split()
# a = int(a)
# b = int(b)
#
# if(b%a == 0):
# print(a,"*",b//a,"=",b, sep="")
# elif(a%b == 0):
# print(b,"*",a//b,"=",a, sep="")
# else:
# print("none")
# a = int(input())
# if a % 2 == 0:
# print('even')
# else:
# print('odd')
# n의 일의자리 수
# n의 마지막 자리수
# a = int(input())
# if a%10 == 1 and a//10 != 1 :
# print(a,"st", sep= "")
# elif a%10 == 2 and a//10 != 1:
# print(a,"nd", sep= "")
# elif a%10 == 3 and a//10 != 1:
# print(a,"rd", sep= "")
# else :
# print(a,"th", sep= "")
#
# 대영이는 돈이 많다
# a, b, c = input().split()
# a =int(a)
# b = int(b)
# c =int(c)
# if a < (b - c):
# print('advertise')
# elif a > (b - c):
# print("do not advertise")
# else:
# print('does not matter')
# a ,b = input().split()
# a =float(a)
# b = float(b)
# c = (a - 100) * 0.9
# d = (b - c)*100/c
# if d <= 10:
# print('정상')
# elif d > 20:
# print('비만')
# else :
# print('과체중')
top of page

기능을 테스트하려면 라이브 사이트로 이동하세요.
jh0212
2023년 12월 16일
2023.12.16
2023.12.16
댓글 0개
좋아요
댓글(0)
bottom of page