s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s387377274 | p02396 | u456885296 | 1453257995 | Python | Python | py | Runtime Error | 0 | 0 | 90 | i=0
while 1:
x = raw_input()
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x) |
s856386556 | p02396 | u613805578 | 1453257998 | Python | Python | py | Runtime Error | 0 | 0 | 135 | sum = 0
while true:
x = raw.input()
sum = sum + 1
if x == 0:
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) |
s080561422 | p02396 | u613805578 | 1453258006 | Python | Python | py | Runtime Error | 0 | 0 | 137 | sum = 0
while true:
x = raw.input()
sum = sum + 1
if x == "0":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) |
s239815033 | p02396 | u613805578 | 1453258019 | Python | Python | py | Runtime Error | 0 | 0 | 134 | sum = 0
while 1:
x = raw.input()
sum = sum + 1
if x == "0":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) |
s083366330 | p02396 | u613805578 | 1453258028 | Python | Python | py | Runtime Error | 0 | 0 | 136 | sum = 0
while 1:
x = raw.input()
sum = sum + 1
if x == " 0 ":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) |
s601998382 | p02396 | u834416077 | 1453258030 | Python | Python | py | Runtime Error | 0 | 0 | 96 | i = 1
while 1:
n = input()
if n == "0":
break
print "Case %s: %s" % (i,n):
i = i + 1 |
s126885145 | p02396 | u613805578 | 1453258042 | Python | Python | py | Runtime Error | 0 | 0 | 136 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == " 0 ":
break
for i in range(0,sum):
print 'Case %s: %s' %(i, x) |
s132372598 | p02396 | u834416077 | 1453258096 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while 1:
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" % (i,n):
i = i + 1 |
s974677155 | p02396 | u834416077 | 1453258165 | Python | Python | py | Runtime Error | 0 | 0 | 105 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" % (i,n):
i = i + 1 |
s508086827 | p02396 | u613805578 | 1453258181 | Python | Python | py | Runtime Error | 0 | 0 | 111 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == "0":
break
print 'Case %s: %s' %(i, x) |
s146956403 | p02396 | u456885296 | 1453258182 | Python | Python | py | Runtime Error | 0 | 0 | 98 |
i=0
while 1:
x = int(raw_input())
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
|
s990777508 | p02396 | u613805578 | 1453258217 | Python | Python | py | Runtime Error | 0 | 0 | 111 | sum = 0
while 1:
x = raw_input()
sum = sum + 1
if x == '0':
break
print 'Case %s: %s' %(i, x) |
s428409661 | p02396 | u834416077 | 1453258229 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d"%(i,n):
i = i + 1 |
s813406612 | p02396 | u047737909 | 1453258316 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i=0
while c!=0:
c = int(input())
if c == 0 : break
c=c+1
print "Case %d: %d" % (c, a) |
s598267473 | p02396 | u834416077 | 1453258372 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while (1):
n = int(raw_input())
if n == 0:
break
print "Case %d: %d" %(i,n):
i = i + 1 |
s527950291 | p02396 | u047737909 | 1453258411 | Python | Python | py | Runtime Error | 0 | 0 | 84 | i=0
while c != 0:
c = int(input())
i = i+1
print "Case %d: %d" % (i,a) |
s046015590 | p02396 | u456885296 | 1453258456 | Python | Python | py | Runtime Error | 0 | 0 | 99 | i=0
while 1:
x = int( raw_input() )
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
|
s179792739 | p02396 | u834416077 | 1453258464 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while (1):
x = int(raw_input())
if x == 0:
break
print "Case %d: %d" %(i,x):
i = i + 1 |
s889341732 | p02396 | u047737909 | 1453258506 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i=0
while True:
c = int(input())
ifc==0:
break
i = i+1
print "Case %d: %d" % (i,c) |
s070516650 | p02396 | u456885296 | 1453258970 | Python | Python | py | Runtime Error | 0 | 0 | 98 |
i=0
while???True:
x = raw_input()
if x == 0:
break
i+=1
print "Case %d: %d" % (i,x)
|
s476829961 | p02396 | u724923896 | 1453298629 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = input()
print x
if x == 0:
return |
s820776991 | p02396 | u724923896 | 1453298900 | Python | Python | py | Runtime Error | 0 | 0 | 83 |
for i in range()
x = input()
if x == 0:
return
print Case i: x
|
s356668414 | p02396 | u724923896 | 1453299088 | Python | Python | py | Runtime Error | 0 | 0 | 91 | j = input()
for i in range(j):
x = input
if x == 0:
return
print Case i: x |
s231158794 | p02396 | u724923896 | 1453299205 | Python | Python | py | Runtime Error | 0 | 0 | 93 | j = input()
for i in range(j):
x = input()
if x == 0:
return
print Case i: x |
s677941223 | p02396 | u724923896 | 1453299491 | Python | Python | py | Runtime Error | 0 | 0 | 111 | k = 0
i = 1
while k == 1:
x = input()
if x == 0:
k = 1
else:
print Case i: x
i =+ 1 |
s077837592 | p02396 | u724923896 | 1453299602 | Python | Python | py | Runtime Error | 0 | 0 | 112 | k = 0
i = 1
while k == 1:
x = input()
if x != 0:
print Case i: x
i =+ 1
else:
k = 1 |
s919047212 | p02396 | u724923896 | 1453302057 | Python | Python | py | Runtime Error | 0 | 0 | 124 | k = 0
i = 0
while k = 1:
i += 1
x = input()
if x == 0:
k = 1
else:
print "Case %d: %d" %(i, x) |
s181973595 | p02396 | u724923896 | 1453302284 | Python | Python | py | Runtime Error | 0 | 0 | 114 | i = 0
while 1:
i += 1
x = input()
if x == 0:
k = 1
else:
print "Case %d: %d" %(i, x) |
s860517244 | p02396 | u970436839 | 1453302333 | Python | Python | py | Runtime Error | 0 | 0 | 138 | x = []
while true:
a = input
if a ==0:
break
else:
x.append(a)
for i in range(len(x)):
print "case %d: %d" %(i+1, x[i]) |
s725018306 | p02396 | u253463900 | 1453347768 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | i=1
while((x = input()) != 0):
print("Case {0}: {1}".format(i, x))
i += 1 |
s146332736 | p02396 | u253463900 | 1453347847 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | i=1
x = input()
while(x != 0):
print("Case {0}: {1}".format(i, x))
i += 1
x = input() |
s770281166 | p02396 | u619765879 | 1453435563 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i = 1
while 1:
x = input()
if x = 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 |
s894583959 | p02396 | u619765879 | 1453435578 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i = 1
while True:
x = input()
if x = 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 |
s515894465 | p02396 | u619765879 | 1453435625 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 1
while 1:
x = input()
if x == 0:
break
else:
print 'case ' + i + ': ' + x
i += 1 |
s086729208 | p02396 | u334643297 | 1453650217 | Python | Python | py | Runtime Error | 0 | 0 | 113 | import sys
c = 0
for line in sys.stdin:
if int(line) == 0:
break
c+=1
print 'Case %s: %s' %(c,line), |
s340331087 | p02396 | u920118302 | 1453772637 | Python | Python | py | Runtime Error | 0 | 0 | 158 | n = []
i = 0
while True:
n.append(input())
if n[i] == 0:
break
i += 1
for j in range(i-1):
print(???case ??? + str(i+1) + ??? : ??? + str(n[i])) |
s121978288 | p02396 | u119456964 | 1453774028 | Python | Python | py | Runtime Error | 0 | 0 | 97 | while 1:
x = int(raw_innput())
if x ~= 0:
print 'Case i: {0}'.format(x)
else:
break |
s934378148 | p02396 | u119456964 | 1453774135 | Python | Python | py | Runtime Error | 0 | 0 | 96 | while 1:
x = int(raw_input())
if x ~= 0:
print 'Case i: {0}'.format(x)
else:
break |
s562252066 | p02396 | u630265299 | 1453779273 | Python | Python | py | Runtime Error | 0 | 0 | 111 | j = 1024
for 1 in range(j):
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x) |
s537145379 | p02396 | u630265299 | 1453779396 | Python | Python | py | Runtime Error | 0 | 0 | 112 | N = 10000
for 1 in range(j):
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x) |
s743146222 | p02396 | u630265299 | 1453779522 | Python | Python | py | Runtime Error | 0 | 0 | 110 | i = 1
while 1:
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x)
i + = 1 |
s446159811 | p02396 | u177295149 | 1453783167 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
while 1:
x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x) |
s902965704 | p02396 | u177295149 | 1453783351 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
while 1:
x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x) |
s497759915 | p02396 | u177295149 | 1453783380 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
while 1:
x = raw_input()
i = i +1
print ("Case %d: %d") % (i,x)
if x == 0:
break |
s718061178 | p02396 | u177295149 | 1453783610 | Python | Python | py | Runtime Error | 0 | 0 | 115 | int i = 0
while 1:
int x = raw_input()
i = i +1
if x == 0:
break
print ("Case %d: %d") % (i,x)
|
s701437525 | p02396 | u177295149 | 1453783663 | Python | Python | py | Runtime Error | 0 | 0 | 118 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print ("Case %s: %s") % ('i','x')
|
s583872362 | p02396 | u177295149 | 1453783684 | Python | Python | py | Runtime Error | 0 | 0 | 114 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print ("Case %s: %s") % (i,x)
|
s991615341 | p02396 | u177295149 | 1453783769 | Python | Python | py | Runtime Error | 0 | 0 | 110 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == 0:
break
print "Case %d: %d" % (i,x)
|
s118776571 | p02396 | u177295149 | 1453783817 | Python | Python | py | Runtime Error | 0 | 0 | 112 | i = 0
while 1:
int x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x)
|
s754796016 | p02396 | u177295149 | 1453783843 | Python | Python | py | Runtime Error | 0 | 0 | 108 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x)
|
s420186000 | p02396 | u177295149 | 1453783871 | Python | Python | py | Runtime Error | 0 | 0 | 106 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print "Case %s: %s" % (i,x) |
s061687930 | p02396 | u177295149 | 1453783919 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
while 1:
x = raw_input()
i = i +1
if x == '0':
break
print 'Case %s: %s' % (i, x) |
s731509695 | p02396 | u563876281 | 1453808278 | Python | Python | py | Runtime Error | 0 | 0 | 93 |
i = 0
while True
x = raw_input()
if x == '0':
break
print 'Case %s: %s' %(sum, x)
i+=1 |
s541177048 | p02396 | u563876281 | 1453808493 | Python | Python | py | Runtime Error | 0 | 0 | 97 |
i = 0
while 1:
x = raw_input()
i+=1
if x == '0':
break
print ('Case {}: {}'.format(i,v))
|
s588155446 | p02396 | u563876281 | 1453808728 | Python | Python | py | Runtime Error | 0 | 0 | 111 | i = 0
while 1:
i+=1
x = raw_input()
if x == '0':
break
print ('Case {}: {}'.format(i,v)) |
s581552393 | p02396 | u682357930 | 1453816157 | Python | Python | py | Runtime Error | 0 | 0 | 66 | i = 0
while(n = (int)input()):
i = i + 1;
print 'Case',i+':',n |
s523351483 | p02396 | u682357930 | 1453816171 | Python | Python | py | Runtime Error | 0 | 0 | 70 | i = 0
while(n = (int)raw_input()):
i = i + 1;
print 'Case',i+':',n |
s824774082 | p02396 | u682357930 | 1453816410 | Python | Python | py | Runtime Error | 0 | 0 | 79 | i = 0
while !n = (int)raw_input():
i += 1
print 'Case {0}: {1}'.format(i,n) |
s814718480 | p02396 | u682357930 | 1453816462 | Python | Python | py | Runtime Error | 0 | 0 | 86 | i = 0
n = input()
while !n:
i += 1
print 'Case {0}: {1}'.format(i,n)
n = input() |
s832087112 | p02396 | u682357930 | 1453816487 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i = 0
n = (int)raw_input()
while !n:
i += 1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s880534363 | p02396 | u682357930 | 1453816498 | Python | Python | py | Runtime Error | 0 | 0 | 105 | i = 0
n = (int)raw_input()
while !n:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s797355861 | p02396 | u682357930 | 1453816526 | Python | Python | py | Runtime Error | 0 | 0 | 107 | i = 0
n = (int)raw_input()
while (!n):
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s170329529 | p02396 | u682357930 | 1453819436 | Python | Python | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s677238677 | p02396 | u682357930 | 1453819441 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s219774871 | p02396 | u682357930 | 1453819449 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | i = 0
n = (int)raw_input()
while n != 0:
i = i+1
print 'Case {0}: {1}'.format(i,n)
n = (int)raw_input() |
s442371338 | p02396 | u974554153 | 1454419844 | Python | Python | py | Runtime Error | 0 | 0 | 106 | a=1
while 1:
x=int(raw_input())
if x==0:
break
print "Case %d: %d" % (a,x)
cnt+=1; |
s583123154 | p02396 | u148101999 | 1456466732 | Python | Python | py | Runtime Error | 0 | 0 | 112 | import sys
N = input()
num =[input() for i in range(N)]
for i in range(len(num)):
print "Case 1: " + num[i] |
s093731960 | p02396 | u148101999 | 1456467046 | Python | Python | py | Runtime Error | 0 | 0 | 113 | i = 0
while True:
i += 1
num = raw_input()
if x == '0':
break
print "Case %d: %s" % (i,x) |
s479285591 | p02396 | u148101999 | 1456467327 | Python | Python | py | Runtime Error | 0 | 0 | 120 | i = 0
while True:
i += 1
num = raw_input()
if len(num) == 0:
break
print "Case %d: %s" % (i,num) |
s296438330 | p02396 | u075836834 | 1457293207 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | import sys
cnt = 1
while 1:
x=sys.stdin.readline().strip()
if x == '0':
break;
print("Case %d: %s"%(cnt,x))
cnt++ |
s499104210 | p02396 | u994049982 | 1458662893 | Python | Python | py | Runtime Error | 0 | 0 | 92 | i=0
while True:
i+=1
a=input()
if a==0:
break
else:
print("Case "+str(i)": "+str(a)) |
s755926708 | p02396 | u463783070 | 1458730933 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | while True:
x = int(input().strip())
if x == 0:
break
print "Case %d : %d" % (i,x) |
s244592187 | p02396 | u463783070 | 1458731313 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
print "Case %d : %d" % (i,x)
i += 1 |
s180914128 | p02396 | u463783070 | 1458734599 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | i = 1
while True:
x = int(input().strip())
if x == '0':
break
print 'Case %d : %d' % (i,x)
i += 1 |
s965900118 | p02396 | u463783070 | 1458734656 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | i = 1
while True:
x = int(input().strip())
if x == '0':
break
else:
print 'Case %d : %d' % (i,x)
i += 1 |
s095221088 | p02396 | u463783070 | 1458744149 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print "Case {} : {}".format(i,x)
i += 1 |
s101326825 | p02396 | u463783070 | 1458744281 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print "Case {0} : {1}".format(i,x)
i += 1 |
s255168465 | p02396 | u463783070 | 1458745421 | Python | Python3 | py | Runtime Error | 0 | 0 | 148 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" '#{0}: #{1}').format(i,x)
i += 1 |
s627221444 | p02396 | u463783070 | 1458745656 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" #{0}: #{1}).format(i,x)
i += 1 |
s870635738 | p02396 | u463783070 | 1458745760 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case" {}: {}).format(i,x)
i += 1 |
s498353490 | p02396 | u463783070 | 1458745833 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ('Case' {}: {}).format(i,x)
i += 1 |
s907534278 | p02396 | u463783070 | 1458746007 | Python | Python3 | py | Runtime Error | 0 | 0 | 142 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("Case {}: {}").format(i,x)
i += 1 |
s396404869 | p02396 | u463783070 | 1458746123 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("""Case {}: {}""").format(i,x)
i += 1 |
s229208411 | p02396 | u463783070 | 1458746335 | Python | Python3 | py | Runtime Error | 0 | 0 | 146 | i = 1
while True:
x = int(input().strip())
if x == 0:
break
else:
print ("""Case {}: {}""").format(i x)
i += 1 |
s617011438 | p02396 | u402330988 | 1459735800 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | # encoding:utf-8
count = 1
input = input().split(" ")
for i in input:
print("Case %d:%d"%(count,i))
count += 1 |
s262071788 | p02396 | u226888928 | 1460123214 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | i=0
while((a=int(input())!=0):
i+=1
print("Case {0}: {1}".format(i,a)) |
s102684914 | p02396 | u226888928 | 1460123507 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | i=0
while 1:
a=int(input())
if(a==0)break
i+=1
print("Case {0}: {1}".format(i,a)) |
s817360449 | p02396 | u894381890 | 1460350848 | Python | Python | py | Runtime Error | 0 | 0 | 111 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print case,
print "%d: %d", %(i,x)
|
s356998620 | p02396 | u894381890 | 1460350870 | Python | Python | py | Runtime Error | 0 | 0 | 111 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print Case,
print "%d: %d", %(i,x)
|
s106488584 | p02396 | u894381890 | 1460350887 | Python | Python | py | Runtime Error | 0 | 0 | 102 | import sys
i = 0
while x != 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
|
s946459160 | p02396 | u894381890 | 1460350907 | Python | Python | py | Runtime Error | 0 | 0 | 102 | import sys
i = 0
while x == 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
|
s155007970 | p02396 | u894381890 | 1460350921 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x == 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
|
s671651021 | p02396 | u894381890 | 1460350964 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print "Case %d: %d", %(i,x)
|
s270156583 | p02396 | u894381890 | 1460351000 | Python | Python | py | Runtime Error | 0 | 0 | 108 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print 'Case %d: %s', %(i,x)
|
s865066452 | p02396 | u894381890 | 1460351024 | Python | Python | py | Runtime Error | 0 | 0 | 107 | import sys
i = 0
x = 1
while x != 0:
x = sys.stdin.readline()
i += 1
print 'Case %d: %s', %(i,x)
|
s840057200 | p02396 | u412890344 | 1462852541 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | num = int(input())
for i:
print("Case " + i + ": " + num[i])
if num == 0
break |
s915287408 | p02396 | u412890344 | 1462852659 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | num = int(input())
while num != 0
print("Case " + i + ": " + num[i])
|
s590819767 | p02396 | u412890344 | 1462852753 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | num = int(input())
i=0
while num != 0:
print("Case " + i + ": " + num[i])
i=i+1 |
s723255019 | p02396 | u656153606 | 1463552215 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | i = 1
while i > 0:
x = input()
print("Case",i,end="")
print(":",x)
if x == 0:
break |
s173870546 | p02396 | u216235239 | 1463741472 | Python | Python3 | py | Runtime Error | 0 | 0 | 145 | import sys
num = 0
while 1:
x = sys.stdin.readline().strip()
if x == "0":
break
num = num + 1
print("case " + str(num) + ": " + x")
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.