Sorry! Posting Assignment is allowed only for commercial accounts.
#include<stdio.h>int main(){int i=2;printf("%d",i);return 0;}
count = 0while(True): if count % 3 == 0: print(count, end = " ")if(count > 15):break;count += 1