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