#include <stdio.h>int main(){ int a; scanf("%d",&a); while(0) { printf("%d",a); if(a == 5) { break; } a=a+1; } return 0;}