목록Head/Code (25)
Head vs breakz
10952 #while #10952 while(True): a ,b = map(int, input().split()) if a == 0 and b == 0 : break else : print(a+b) 10951 #10951 while(True): try : a ,b = map(int, input().split()) except : break print(a+b) 1110 #1110 a = int(input()) b = a//10 c = a%10 new_a = -100 count = 0 while(new_a != a): count += 1 new_a = c*10 + (b+c)% 10 b = new_a//10 c = new_a%10 print(count)
2739 #2739 a=int(input()) for i in range(1,10): print(a,"*",i,"=",a*i) 10950 #10950 t = int(input()) for i in range(t): a,b=map(int,input().split()) print(a+b) 8393 #8393 a= int(input()) b= 0 for i in range(1,a+1): c = i+b b = c print(b) 15552 #15552 import sys t=int(input()) for i in range (t): a,b = map(int, sys.stdin.readline().split()) print(a+b) 2741 #2741 a = int(input()) for i in range(1,..
1330번 a,b = map(int, input().split()) if a>b : print(">") elif a < b : print("
YOLO CODE import cv2 as cv import argparse import numpy as np import os.path from matplotlib import pyplot as plt %matplotlib inline # Initialize the parameters confThreshold = 0.5 #Confidence threshold nmsThreshold = 0.4 #Non-maximum suppression threshold inpWidth = 416 #Width of network's input image inpHeight = 416 #Height of network's input image # Load names of classes classesFile =..