diff --git a/main.c b/main.c index d923aa60..9f36ad0b 100644 --- a/main.c +++ b/main.c @@ -1,15 +1,16 @@ -#include -#include - -main(){ - char some_string[] = {}; - for (int i = 0; i < 20; ++i) { - scanf("%s", some_string); - if (some_string[i] == EOF) - { - break; - } - } - putchar(some_string); - -} \ No newline at end of file +//NAME: AHEREZA SARAH +//REG_NO: 16/U/35 +//COURSE: COMPUTER ENGINEERING +#include +int main() +{ + +int count = 1; +while(count <= 100){ +printf("%d ", count); +count += 3; + +} +} + +