Red One, hollywoods' next action movie, directed by Jake Kasdan is coming this Christmas 2023. Chris Evans and Dwayne Johnson are casted in this upcoming movie. It is said to be released in early 2023. Dwayne The Rock Johnson has shared some photos with Chris with their look in the movie. Rock was wearing a Red suite.
Jake Kasdan and Dwayne Johnson are collaborating first time outside the Jumanji franchise. The story is written by Chris Morgan (Fast & Furious: Hobbs and Shaw writer) and Hiram Garcia.
The movie also casts:
Kiernan Shipka, Bonnie Hunt, Wesley Kimmel, Kristofer Hivju, Mary Elizabeth Ellis, Lucy Liu, Nick Kroll and Spider man star J K Simmons.
Dwayne Johnson Recently finished DC movie Black Adam which is a huge success for him. Chris has recently done Gray man. Now our favorites Black Adam and Steve Rogers/Captain America are teaming up for a blockbuster. Let's hope for the best.

1 Comments
ReplyDeletepackage com.mycompany.factorial;
import java.util.Scanner;
class Fact{
int value;
void out(int val){
value=val;
int facto=1;
for(int i=1; i<=val; i++){
facto*=i;
}
System.out.println("Factorial: "+facto);
}
}
public class Factorial {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
System.out.println("Enter Value: ");
int a=sc.nextInt();
Fact n1=new Fact();
n1.out(a);
}
}