#include<iostream> using namespace std; int main(){ int a; while(1){ cin>>a; if(a>=0&&a<=100){ cout<<"成绩:"<<a; break; } } return 0; }