'''
a,b=input().split(':')
print(a,b,sep=':')
'''
'''
a,b=input().split()
print(a+b)
'''
'''
a,b=input().split()
s=int(a)+int(b)
print(s)
'''
'''
a=input()
b=input()
s= float(a)+float(b)
print(s)
'''
'''
a,b=input().split()
s=int(a)-int(b)
print(s)
'''
'''''
a,b=input().split()
s= float(a)*float(b)
print(s)
a, b = map( int, input().split() )
# a, b = map( float, input().split() )
print(a/b) # 실수 나눈값
print(a//b) # 정수 몫
print(a**b) # a의 b제곱
+ - *
/ // %
**
나누기
정수/정수 -> 실수
정수//정수 -> 정수 몫
정수%정수 -> 정수 나머지
a,b=input().split()
print(b,a)
a,b,c=input().split('.')
print(c,b,a,sep='-')
a,b,c=input().split(':')
print(b)
a,b=map(int,input().split())
print(a**b)
a,b=map(int,input().split())
print(a//b)
a,b=map(int,input().split())
print(a%b)
a=int(input())
print(a//60,a%60)
a=input()
print(a+"%")
# 산술연산자 + - * / // % **
# 비교연산자 > < >= <= == !=
# 논리연산자 and or
if 조건식 :
명령1
명령2
명령3
if(조건식)
{
명령1;
명령2;
}
명령3;
if a==10 or a==100 or a==1000:
print('hello')
elif a>10 and a%2==0 :
print('bye')
else :
print('hi')
a=int(input())
if 10>a:
print('small')
a=int(input())
if a<10:
print('small')
elif a>=10:
print('big')
a,b=map(int,input().split())
if a>b:
print(">")
elif b>a:
print("<")
else :
print("=")
a,b=map(int,input().split())
if a<b:
print(b-a)
else:
print(a-b)
a=int(input())
if a%7==0:
print('multiple')
else :
print('not multiple')
a=int(input())
if a%2==0:
print('even')
else:
print("odd")
a=float(input())
if 50<=a and 60>=a:
print('win')
else :
print('lose')
a =int(input())
if 30<=a and 40>=a or 60<=a and 70>=a:
print('win')
else :
print('lose')
a= int(input())
if 50<=a and 70 >=a or a%6==0:
print('win')
else :
print('lose')
a =int(input())
if a== 1 or a== 3 or a== 5 or a==7:
print('oh my god')
else :
print('enjoy')
a,b= map(int,input().split())
if a%2==0 and b%2==0:
print('짝수+짝수=짝수')
elif a%2!=0 and b%2 !=0 :
print('홀수+홀수=짝수')
elif a%2 !=0 and b%2 ==0:
print('홀수+짝수=홀수')
else :
print('짝수+홀수=홀수')
a,b,c = map(int,input().split())
if (a-b+c)%10==0:
print('대박')
else :
print('그럭저럭')
a,b,c = map(int,input().split())
if ((a+b+c)//100)%2==0:
print('대박')
else :
print("그럭저럭")
a,b,c=map(int,input().split())
if a <=170 or b<=170 or c <=170:
print('CRASH')
elif a>170 or b<170 or c>170:
print("PASS")
a,b = map(int, input().split())
c=((89-a)//5)+1+b
print(c)
'''
a,b= map(int,input())
if b%a==0:
c =b//a
print(str(a)+"*"+str(c)+"="+str(b))
elif a%b==0:
c= a//b
print(str(b)+"*"+str(c)+"="+str(a))
else:
print('nono')
a, b = map( float, input())
c=b-(a-100)*0.9*100//(a-100)*0.9*100
if c<=10:
print('정상')
elif c>10 and c<=20:
print('과체중')
else:
print('비만')
a,b,c = map(int,input())
if a>=170:
print(str(a)+'CRASH')
elif b>=170:
print(str(b)+'CRASH')
elif c>=170:
print(str(c)+'CRASH')
else:
print('pass')
top of page
기능을 테스트하려면 라이브 사이트로 이동하세요.
수정: 10월 16일
20241009
20241009
댓글 0개
좋아요
댓글(0)
bottom of page