This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var template = document.querySelector('template'); | |
var templateContainer = 'content' in template ? template.content : template; | |
var newGallery = require('./gallery'); | |
var IMAGE_LOAD_TIMEOUT = 10000; | |
var Picture = module.exports = function(picture, i) { | |
this.data = picture; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = input() | |
b = input() | |
print('Сколько камней ?') | |
r = int(input()) | |
i = 0 | |
o = 0 | |
while o == 0: | |
c = int(input()) | |
if not c == 2 or not c < 4: | |
r -= c |